|
6 | 6 | <div v-if="content" :class="['fixed top-0 h-screen', sidebarClass]">
|
7 | 7 | <div
|
8 | 8 | id="sidebar"
|
9 |
| - class="scroll-smooth prose dark:prose-invert max-w-full flex overflow-y-auto overflow-x-hidden h-full w-full flex-col items-center p-4 focus:outline-0 sm:p-6 bg-orange-50 dark:bg-gray-800" |
| 9 | + class="scroll-smooth prose dark:prose-invert max-w-full flex overflow-y-auto overflow-x-hidden h-full w-full flex-col items-center p-4 focus:outline-0 sm:p-6 bg-orange-50 dark:bg-[#131313]/90 border-l-2 dark:backdrop-blur-xl border-black dark:border-0" |
10 | 10 | @scroll="onScroll"
|
11 | 11 | >
|
12 | 12 | <div
|
13 | 13 | :class="[
|
14 |
| - 'sticky border-b -top-6 bg-orange-50 dark:bg-gray-800 w-full flex flex-row items-center justify-between px-4', |
| 14 | + 'sticky border-b -top-6 bg-orange-50 dark:bg-[#131313]/90 w-full flex flex-row items-center justify-between px-4', |
15 | 15 | !isScrolled
|
16 | 16 | ? '!border-transparent pb-2'
|
17 |
| - : 'border-gray-300 dark:border-gray-700 mb-2 py-2', |
| 17 | + : 'border-gray-300 dark:border-white mb-2 py-2 dark:backdrop-blur-2xl', |
18 | 18 | ]"
|
19 | 19 | >
|
20 | 20 | <Dropdown
|
21 | 21 | ref="statusDropDown"
|
22 | 22 | :customTriggerClass="
|
23 |
| - 'px-3 py-1 hover:bg-orange-100 dark:hover:bg-gray-700 dark:border-gray-700 border ' + status.toLowerCase()" |
| 23 | + 'px-3 py-1 hover:bg-orange-100 dark:hover:bg-black dark:border-white border' + status.toLowerCase()" |
24 | 24 | :border="false"
|
25 | 25 | >
|
26 | 26 | <!-- trigger element -->
|
|
29 | 29 | </template>
|
30 | 30 |
|
31 | 31 | <!-- contents display in dropdown -->
|
32 |
| - <ul class="flex flex-col bg-orange-100 dark:bg-gray-600"> |
| 32 | + <ul class="flex flex-col bg-orange-100 dark:bg-[#131313]"> |
33 | 33 | <li
|
34 | 34 | v-for="(s, i) in allStatus"
|
35 | 35 | :key="'status-' + i"
|
36 | 36 | @click="changeStatus(s)"
|
37 | 37 | :class="[
|
38 |
| - 'px-4 py-2 hover:cursor-pointer border-b border-orange-200 dark:border-gray-500 hover:bg-orange-50 dark:hover:bg-gray-500', |
| 38 | + 'px-4 py-2 hover:cursor-pointer border-b border-orange-200 dark:border-gray-500 hover:bg-orange-50 dark:hover:bg-black', |
39 | 39 | s.toLowerCase(),
|
40 | 40 | ]"
|
41 | 41 | v-text="s"
|
|
82 | 82 | >
|
83 | 83 | <Card
|
84 | 84 | moreTransparency
|
85 |
| - class="border-gray-300 hover:text-gray-100 transition-colors dark:border-gray-700 dark:hover:bg-gray-600 dark:bg-transparent" |
| 85 | + class="border-gray-300 hover:text-gray-100 transition-colors dark:border-white dark:hover:bg-black dark:bg-transparent" |
86 | 86 | >
|
87 | 87 | <strong v-if="link.english">[Contenido en Ingles]</strong>
|
88 | 88 | {{ link.name }}
|
|
0 commit comments