New: Mini play button icons now respect the media type (i.e. book, carousel and image)

This commit is contained in:
lscambo13
2025-01-21 09:43:23 -08:00
parent 6fd28935ea
commit 7f6c0807ad

View File

@@ -86,6 +86,18 @@ html {
font-family: Material Icons;
}
div[data-type="Book"] .play_arrow:before {
content: "\f53b";
}
div[data-type="Photo"] .play_arrow:before {
content: "\e5d0";
}
div[data-type="PhotoAlbum"] .play_arrow:before {
content: "\e8eb";
}
::selection {
background: var(--activeColorAlpha);
}