@posiwise/core-styles 0.0.17 → 0.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@posiwise/core-styles",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -264,7 +264,6 @@
264
264
  }
265
265
  }
266
266
 
267
-
268
267
  // toggle
269
268
  .switch.checked {
270
269
  background: var(--first) !important;
@@ -613,12 +612,18 @@
613
612
 
614
613
 
615
614
 
616
- .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight {
617
- background-color: var(--tabs_bg) !important;
618
- color: var(--tabs_text) !important;
619
- }
615
+ .p-dropdown-panel {
616
+ .p-dropdown-items {
617
+ .p-dropdown-item {
618
+ &.p-highlight {
619
+ background-color: var(--tabs_bg) !important;
620
+ color: var(--tabs_text) !important;
621
+ }
620
622
 
621
- .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-focus {
622
- background-color: var(--tabs_bg) !important;
623
- color: var(--tabs_text) !important;
623
+ &.p-focus {
624
+ background-color: var(--tabs_bg) !important;
625
+ color: var(--tabs_text) !important;
626
+ }
627
+ }
628
+ }
624
629
  }