@posiwise/core-styles 0.0.18 → 0.0.20
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 +18 -2
package/package.json
CHANGED
|
@@ -610,8 +610,6 @@
|
|
|
610
610
|
border-width: 0 !important;
|
|
611
611
|
}
|
|
612
612
|
|
|
613
|
-
|
|
614
|
-
|
|
615
613
|
.p-dropdown-panel {
|
|
616
614
|
.p-dropdown-items {
|
|
617
615
|
.p-dropdown-item {
|
|
@@ -626,4 +624,22 @@
|
|
|
626
624
|
}
|
|
627
625
|
}
|
|
628
626
|
}
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.list-action {
|
|
630
|
+
width: max-content !important;
|
|
631
|
+
@media (max-width: 425px) {
|
|
632
|
+
width: auto !important; // Override for mobile
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.p-inputwrapper-focus {
|
|
637
|
+
box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important; /* Replace with your color */
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
.p-dropdown:not(.p-disabled).p-focus {
|
|
642
|
+
border-color: var(--tabs_bg) !important; /* Change to your custom color */
|
|
643
|
+
box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important; /* Adjust as needed */
|
|
644
|
+
outline: none !important; /* Keep the outline removed */
|
|
629
645
|
}
|