elbe-ui 0.4.20 → 0.4.21
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/dist/ui/theme/colors.js +3 -3
- package/package.json +1 -1
package/dist/ui/theme/colors.js
CHANGED
|
@@ -245,9 +245,9 @@ export class SchemeColor extends KindColor {
|
|
|
245
245
|
}
|
|
246
246
|
asCss() {
|
|
247
247
|
return (`${this.primary.asCss()}\n` +
|
|
248
|
-
`.primary { ${this.primary.asCss()}} \n` +
|
|
249
|
-
`.secondary { ${this.secondary.asCss()} }\n` +
|
|
250
|
-
`.inverse { ${this.inverse.asCss()} }`);
|
|
248
|
+
`.primary, .secondary .primary, .inverse .primary { ${this.primary.asCss()}} \n` +
|
|
249
|
+
`.secondary, .primary .secondary, .inverse .secondary { ${this.secondary.asCss()} }\n` +
|
|
250
|
+
`.inverse, .primary .inverse, .secondary .inverse { ${this.inverse.asCss()} }`);
|
|
251
251
|
}
|
|
252
252
|
static generate(path, seed, base) {
|
|
253
253
|
const m = seed.scheme;
|