11 lines
233 B
CSS
11 lines
233 B
CSS
/*
|
|
* Default page color is white.
|
|
* Default popup background is transparent.
|
|
* Can't use inherit :
|
|
* root()->decorationStyle().backgroundColor().{red,green, blue}
|
|
* are all 0.
|
|
*/
|
|
div.popup {
|
|
background-color: lavender;
|
|
}
|