@posiwise/core-styles 0.0.22 → 0.0.23
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 +11 -0
package/package.json
CHANGED
|
@@ -633,6 +633,17 @@
|
|
|
633
633
|
}
|
|
634
634
|
}
|
|
635
635
|
|
|
636
|
+
.p-multiselect-filter {
|
|
637
|
+
border-color: var(--tabs_bg) !important; /* Change to your custom color */
|
|
638
|
+
box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important; /* Adjust as needed */
|
|
639
|
+
outline: none !important; /* Keep the outline removed */
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.p-multiselect:not(.p-disabled).p-focus {
|
|
643
|
+
border-color: var(--tabs_bg) !important;
|
|
644
|
+
box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important;
|
|
645
|
+
outline: none !important;
|
|
646
|
+
}
|
|
636
647
|
.p-dropdown:not(.p-disabled).p-focus {
|
|
637
648
|
border-color: var(--tabs_bg) !important; /* Change to your custom color */
|
|
638
649
|
box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important; /* Adjust as needed */
|