@worca/ui 0.3.1-rc.5 → 0.4.0
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/app/main.bundle.js +272 -271
- package/app/main.bundle.js.map +3 -3
- package/app/styles.css +15 -0
- package/package.json +1 -1
package/app/styles.css
CHANGED
|
@@ -2323,6 +2323,21 @@ sl-option.template-grouped::part(suffix) {
|
|
|
2323
2323
|
padding: 0 0 4px;
|
|
2324
2324
|
}
|
|
2325
2325
|
|
|
2326
|
+
/* Fix contrast on selected/current option description */
|
|
2327
|
+
sl-option.template-grouped[aria-selected="true"]::part(suffix),
|
|
2328
|
+
sl-option.template-grouped:focus::part(suffix) {
|
|
2329
|
+
color: inherit;
|
|
2330
|
+
opacity: 0.85;
|
|
2331
|
+
}
|
|
2332
|
+
|
|
2333
|
+
/* Selected template description below dropdown */
|
|
2334
|
+
.template-description {
|
|
2335
|
+
font-size: 12px;
|
|
2336
|
+
color: var(--muted);
|
|
2337
|
+
margin-top: 6px;
|
|
2338
|
+
line-height: 1.5;
|
|
2339
|
+
}
|
|
2340
|
+
|
|
2326
2341
|
/* Plan file autocomplete */
|
|
2327
2342
|
.plan-autocomplete {
|
|
2328
2343
|
position: relative;
|