@posiwise/core-styles 0.0.15 → 0.0.17
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
|
@@ -88,6 +88,15 @@
|
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
+
.custom-tooltip .tooltip-inner {
|
|
92
|
+
/* Provides space at the bottom */
|
|
93
|
+
max-width: 500px !important; /* Width for readability */
|
|
94
|
+
max-height: 900px !important; /* Limits height for long content */
|
|
95
|
+
overflow-y: auto !important;
|
|
96
|
+
padding: 10px !important;
|
|
97
|
+
text-align: left !important;
|
|
98
|
+
}
|
|
99
|
+
|
|
91
100
|
h1,
|
|
92
101
|
h2,
|
|
93
102
|
h3,
|
|
@@ -255,6 +264,7 @@
|
|
|
255
264
|
}
|
|
256
265
|
}
|
|
257
266
|
|
|
267
|
+
|
|
258
268
|
// toggle
|
|
259
269
|
.switch.checked {
|
|
260
270
|
background: var(--first) !important;
|
|
@@ -596,3 +606,19 @@
|
|
|
596
606
|
color: var(--first) !important;
|
|
597
607
|
}
|
|
598
608
|
}
|
|
609
|
+
|
|
610
|
+
.body-quill {
|
|
611
|
+
border-width: 0 !important;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
|
|
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
|
+
}
|
|
620
|
+
|
|
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;
|
|
624
|
+
}
|
|
@@ -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
|
+
}
|
|
@@ -134,6 +134,15 @@
|
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
+
.ql-snow .ql-editor h1,
|
|
138
|
+
.ql-snow .ql-editor h2,
|
|
139
|
+
.ql-snow .ql-editor h3,
|
|
140
|
+
.ql-snow .ql-editor h4,
|
|
141
|
+
.ql-snow .ql-editor h5,
|
|
142
|
+
.ql-snow .ql-editor h6 {
|
|
143
|
+
font-weight: bold !important;
|
|
144
|
+
}
|
|
145
|
+
|
|
137
146
|
@media only screen and (max-width: 480px) {
|
|
138
147
|
.p-tabmenu {
|
|
139
148
|
.p-tabmenuitem {
|