Add dark mode for spotify table
This commit is contained in:
parent
ee1eaf6593
commit
e5c8c6d7eb
1 changed files with 13 additions and 1 deletions
|
@ -1,9 +1,21 @@
|
||||||
body.page-spotifyplaylistpage {
|
body.page-spotifyplaylistpage {
|
||||||
table {
|
table {
|
||||||
font-size: 80%;
|
font-size: 80%;
|
||||||
|
background-color: transparent;
|
||||||
|
|
||||||
td {
|
td,
|
||||||
|
th {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
|
||||||
|
@include dark-mode {
|
||||||
|
color: $dark-mode-text;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tbody tr:hover {
|
||||||
|
@include dark-mode {
|
||||||
|
background-color: $grey-darker !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
|
|
Loading…
Reference in a new issue