@posiwise/core-styles 0.0.16 → 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
|
@@ -609,3 +609,21 @@
|
|
|
609
609
|
.body-quill {
|
|
610
610
|
border-width: 0 !important;
|
|
611
611
|
}
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
|
|
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
|
+
}
|
|
622
|
+
|
|
623
|
+
&.p-focus {
|
|
624
|
+
background-color: var(--tabs_bg) !important;
|
|
625
|
+
color: var(--tabs_text) !important;
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
}
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
.bg-default-3 {
|
|
145
|
-
background-color: map-get($default,
|
|
145
|
+
background-color: map-get($default, darken-3);
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
.bg-default-4 {
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
.bg-default-7 {
|
|
164
|
-
background-color: map-get($default,
|
|
164
|
+
background-color: map-get($default, darken-1);
|
|
165
165
|
color: rgb(255 255 255);
|
|
166
166
|
}
|
|
167
167
|
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
.bg-default-10 {
|
|
179
|
-
background-color: map-get($pink,
|
|
179
|
+
background-color: map-get($pink, darken-3);
|
|
180
180
|
color: rgb(255 255 255);
|
|
181
181
|
}
|
|
182
182
|
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
.bg-default-18 {
|
|
217
|
-
background-color: map-get($warning,
|
|
217
|
+
background-color: map-get($warning, darken-2);
|
|
218
218
|
}
|
|
219
219
|
|
|
220
220
|
.bg-default-19 {
|
|
@@ -238,7 +238,7 @@
|
|
|
238
238
|
}
|
|
239
239
|
|
|
240
240
|
.bg-default-24 {
|
|
241
|
-
background-color: map-get($warning,
|
|
241
|
+
background-color: map-get($warning, darken-1);
|
|
242
242
|
}
|
|
243
243
|
|
|
244
244
|
// blue-grey badges
|
|
@@ -466,3 +466,13 @@
|
|
|
466
466
|
background-color: map-get($cyan, lighten-3);
|
|
467
467
|
color: rgb(255 255 255);
|
|
468
468
|
}
|
|
469
|
+
|
|
470
|
+
.bg-cyan-default {
|
|
471
|
+
background-color: map-get($cyan, lighten-3);
|
|
472
|
+
color: rgb(255 255 255);
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.bg-cyan-default-change {
|
|
476
|
+
background-color: map-get($cyan, darken-1);
|
|
477
|
+
color: rgb(255 255 255);
|
|
478
|
+
}
|