From 7f6c0807ad4a403ba960bbacdc9408aa8db978a0 Mon Sep 17 00:00:00 2001 From: lscambo13 Date: Tue, 21 Jan 2025 09:43:23 -0800 Subject: [PATCH] New: Mini play button icons now respect the media type (i.e. book, carousel and image) --- Theme/ElegantFin-theme-nightly.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Theme/ElegantFin-theme-nightly.css b/Theme/ElegantFin-theme-nightly.css index 6bfda85..998d28b 100644 --- a/Theme/ElegantFin-theme-nightly.css +++ b/Theme/ElegantFin-theme-nightly.css @@ -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); }