Allows us to set custom CSS by theme. This means we can special case for HighContrast, Adwaita-dark, etc. Fixes https://gitlab.gnome.org/World/podcasts/issues/69
10 lines
210 B
CSS
10 lines
210 B
CSS
.played {
|
|
background: repeating-linear-gradient(
|
|
-45deg,
|
|
mix(lightgrey, @theme_bg_color, 0.3),
|
|
mix(lightgrey, @theme_bg_color, 0.3) 10px,
|
|
@theme_bg_color 10px,
|
|
@theme_bg_color 20px
|
|
);
|
|
}
|