adata-ui 2.0.56 → 2.0.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -111,7 +111,7 @@ const props = defineProps<{
|
|
|
111
111
|
|
|
112
112
|
<div class="absolute left-6 top-6 flex flex-col gap-4 pr-6">
|
|
113
113
|
<div class="flex items-center gap-2 title">
|
|
114
|
-
<div class="rounded-[4px]
|
|
114
|
+
<div class="rounded-[4px] icon-item bg-deepblue-900/5 dark:bg-gray-200/5 p-1">
|
|
115
115
|
<component
|
|
116
116
|
:is="icon"
|
|
117
117
|
class="size-6 shrink-0"
|
|
@@ -214,6 +214,10 @@ const props = defineProps<{
|
|
|
214
214
|
.active-item .border-path {
|
|
215
215
|
fill: #0070EB1A;
|
|
216
216
|
}
|
|
217
|
+
.active-item .icon-item {
|
|
218
|
+
background: #2C3E500D;
|
|
219
|
+
}
|
|
220
|
+
|
|
217
221
|
.curve-block:hover .border-path,
|
|
218
222
|
.curve-block:hover .animated-border {
|
|
219
223
|
transition: stroke-dashoffset 2s ease, fill 2s ease;
|
|
@@ -256,10 +260,16 @@ const props = defineProps<{
|
|
|
256
260
|
.active-item .title {
|
|
257
261
|
color: #1b98e2;
|
|
258
262
|
}
|
|
263
|
+
|
|
259
264
|
.active-item .border-path {
|
|
260
|
-
fill:
|
|
265
|
+
fill: #1B98E21A;
|
|
261
266
|
}
|
|
262
267
|
|
|
268
|
+
.active-item .icon-item {
|
|
269
|
+
background: #E3E5E80D;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
|
|
263
273
|
.curve-block:hover .icon-item {
|
|
264
274
|
background-color: rgba(30, 88, 156, 0.6);
|
|
265
275
|
color: #1b98e2;
|