forked from rosa/hakurei
20 lines
421 B
SCSS
20 lines
421 B
SCSS
@use "test_common";
|
|
|
|
:root {
|
|
--bg: #2c2c2c;
|
|
--fg: ghostwhite;
|
|
}
|
|
|
|
/*
|
|
* The color of an SVG in a content: cannot be controlled via CSS as it's not
|
|
* present in the DOM, so use duplicated versions.
|
|
*/
|
|
details.test-node.success {
|
|
&[open] > summary::marker {
|
|
content: url("/static/success-open-white.svg");
|
|
}
|
|
> summary::marker {
|
|
content: url("/static/success-closed-white.svg");
|
|
}
|
|
}
|