Files
DiceCloud/app/imports/client/ui/styles/inheritBackgrounds.css
2022-11-19 17:51:50 +02:00

15 lines
388 B
CSS

/**
* Some componets are used as targets for dialog animations often, and thus
* require a background color. Inheriting the color from the nearest ancestor
* that is known to have a background ensures that the background is
* consistent for both light and dark themes
**/
.v-list > div {
background-color: inherit;
}
.v-list > div > .v-list__tile {
background-color: inherit;
}