@posiwise/core-styles 0.0.17 → 0.0.19
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.
- package/package.json +1 -1
- package/scss/_dynamic-styles.scss +21 -7
package/package.json
CHANGED
|
@@ -264,7 +264,6 @@
|
|
|
264
264
|
}
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
|
|
268
267
|
// toggle
|
|
269
268
|
.switch.checked {
|
|
270
269
|
background: var(--first) !important;
|
|
@@ -611,14 +610,29 @@
|
|
|
611
610
|
border-width: 0 !important;
|
|
612
611
|
}
|
|
613
612
|
|
|
613
|
+
.p-dropdown-panel {
|
|
614
|
+
.p-dropdown-items {
|
|
615
|
+
.p-dropdown-item {
|
|
616
|
+
&.p-highlight {
|
|
617
|
+
background-color: var(--tabs_bg) !important;
|
|
618
|
+
color: var(--tabs_text) !important;
|
|
619
|
+
}
|
|
614
620
|
|
|
621
|
+
&.p-focus {
|
|
622
|
+
background-color: var(--tabs_bg) !important;
|
|
623
|
+
color: var(--tabs_text) !important;
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
}
|
|
615
628
|
|
|
616
|
-
.
|
|
617
|
-
|
|
618
|
-
|
|
629
|
+
.list-action {
|
|
630
|
+
width: max-content !important;
|
|
631
|
+
@media (max-width: 425px) {
|
|
632
|
+
width: auto !important; // Override for mobile
|
|
633
|
+
}
|
|
619
634
|
}
|
|
620
635
|
|
|
621
|
-
.p-
|
|
622
|
-
|
|
623
|
-
color: var(--tabs_text) !important;
|
|
636
|
+
.p-inputwrapper-focus {
|
|
637
|
+
box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important; /* Replace with your color */
|
|
624
638
|
}
|