@fy-/fws-vue 2.2.42 → 2.2.44
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.
|
@@ -341,8 +341,8 @@ function handlePaste(e: ClipboardEvent) {
|
|
|
341
341
|
@apply w-full flex flex-wrap gap-2 items-center shadow-sm bg-fv-neutral-50
|
|
342
342
|
border border-fv-neutral-300 text-fv-neutral-900 text-sm rounded-sm
|
|
343
343
|
focus-within:ring-fv-primary-500 focus-within:border-fv-primary-500
|
|
344
|
-
|
|
345
|
-
dark:placeholder-fv-neutral-400 dark:text-white
|
|
344
|
+
dark:bg-fv-neutral-700 dark:border-fv-neutral-600
|
|
345
|
+
dark:placeholder-fv-neutral-400 dark:text-white p-1.5
|
|
346
346
|
dark:focus-within:ring-fv-primary-500 dark:focus-within:border-fv-primary-500;
|
|
347
347
|
cursor: text;
|
|
348
348
|
}
|
|
@@ -355,8 +355,8 @@ function handlePaste(e: ClipboardEvent) {
|
|
|
355
355
|
/* Tag styling */
|
|
356
356
|
.tag {
|
|
357
357
|
@apply inline-flex gap-1 items-center
|
|
358
|
-
font-medium rounded text-black
|
|
359
|
-
dark:text-white cursor-default;
|
|
358
|
+
font-medium px-2.5 py-1 rounded text-black
|
|
359
|
+
dark:text-white cursor-default !important;
|
|
360
360
|
}
|
|
361
361
|
|
|
362
362
|
/* Color variants */
|
|
@@ -379,15 +379,6 @@ function handlePaste(e: ClipboardEvent) {
|
|
|
379
379
|
@apply bg-fv-neutral-400 dark:bg-fv-neutral-900;
|
|
380
380
|
}
|
|
381
381
|
|
|
382
|
-
/* Increase the clickable target for remove buttons (improves mobile accessibility) */
|
|
383
|
-
.tag button {
|
|
384
|
-
min-width: 44px;
|
|
385
|
-
min-height: 44px;
|
|
386
|
-
display: flex;
|
|
387
|
-
align-items: center;
|
|
388
|
-
justify-content: center;
|
|
389
|
-
}
|
|
390
|
-
|
|
391
382
|
/* The editable input area for new tags */
|
|
392
383
|
.input {
|
|
393
384
|
@apply flex-grow min-w-[100px] outline-none border-none break-words;
|