@mptw/skylens-ui 1.5.17 → 1.5.18
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.
|
@@ -718,7 +718,7 @@ export default defineComponent({
|
|
|
718
718
|
.multi-email-input-body .multi-email-input-role {
|
|
719
719
|
@apply grow-0 shrink-0 flex;
|
|
720
720
|
|
|
721
|
-
:deep(.dropdown-toggle) {
|
|
721
|
+
& :deep(.dropdown-toggle) {
|
|
722
722
|
@apply text-sm;
|
|
723
723
|
}
|
|
724
724
|
}
|
|
@@ -726,14 +726,15 @@ export default defineComponent({
|
|
|
726
726
|
.multi-email-input-autocomplete {
|
|
727
727
|
@apply z-50 max-h-[116px] p-1 bg-white rounded shadow-default hidden;
|
|
728
728
|
|
|
729
|
-
:deep(.swiper-scrollbar-drag) {
|
|
729
|
+
& :deep(.swiper-scrollbar-drag) {
|
|
730
730
|
@apply bg-primary-300;
|
|
731
731
|
}
|
|
732
732
|
|
|
733
733
|
.autotcomplete-item {
|
|
734
734
|
@apply block w-full py-1 px-2 bg-white text-sm text-pgray-2;
|
|
735
735
|
|
|
736
|
-
&:hover,
|
|
736
|
+
&:hover,
|
|
737
|
+
&.focused {
|
|
737
738
|
@apply bg-primary-100;
|
|
738
739
|
}
|
|
739
740
|
}
|
|
@@ -79,11 +79,11 @@ export default defineComponent({
|
|
|
79
79
|
.item-actions {
|
|
80
80
|
@apply grow-0 shrink-0;
|
|
81
81
|
|
|
82
|
-
:deep(.dropdown-toggle) {
|
|
82
|
+
& :deep(.dropdown-toggle) {
|
|
83
83
|
@apply py-0.75 border-primary-600 bg-white text-sm;
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
:deep(.dropdown-menu) {
|
|
86
|
+
& :deep(.dropdown-menu) {
|
|
87
87
|
@apply border-primary-600;
|
|
88
88
|
}
|
|
89
89
|
|
|
@@ -99,6 +99,7 @@ export default defineComponent({
|
|
|
99
99
|
|
|
100
100
|
.project-share-item
|
|
101
101
|
.item-actions
|
|
102
|
+
&
|
|
102
103
|
:deep(.dropdown-menu)
|
|
103
104
|
.dropdown-list-wrapper
|
|
104
105
|
.dropdown-list {
|
|
@@ -261,7 +261,8 @@ export default defineComponent({
|
|
|
261
261
|
.stay-range-input {
|
|
262
262
|
@apply flex flex-col;
|
|
263
263
|
|
|
264
|
-
&.disabled .input-group input[type="text"],
|
|
264
|
+
&.disabled .input-group input[type="text"],
|
|
265
|
+
&.readonly .input-group input[type="text"] {
|
|
265
266
|
@apply border-primary-600 bg-primary-100;
|
|
266
267
|
}
|
|
267
268
|
|
|
@@ -289,7 +290,7 @@ export default defineComponent({
|
|
|
289
290
|
@apply grow flex flex-nowrap space-x-2;
|
|
290
291
|
|
|
291
292
|
input[type="text"] {
|
|
292
|
-
@apply grow-0 shrink-0 w-11 border border-primary-600 rounded text-base text-center text-pgray-2 outline-none;
|
|
293
|
+
@apply grow-0 shrink-0 w-11 bg-white border border-primary-600 rounded text-base text-center text-pgray-2 outline-none;
|
|
293
294
|
}
|
|
294
295
|
|
|
295
296
|
.custom-select {
|