New: Card indicators for different media have distinct colors now (i.e. photo, video, folder, photo album)

This commit is contained in:
lscambo13
2025-01-21 09:46:43 -08:00
parent 6b1b61ac93
commit 0acce96acf

View File

@@ -1066,12 +1066,25 @@ div[data-isfolder="true"] .cardText-first+.itemSelectionPanel>.checkboxContainer
}
.videoIndicator {
background: rgb(121 65 5);
background: rgb(41 41 41);
padding: .5em;
transform: scale(.85);
border: var(--defaultLighterBorder);
}
.videoIndicator:has(.photo_album),
.videoIndicator:has(.folder) {
background: peru;
}
.videoIndicator:has(.photo) {
background: steelblue;
}
.videoIndicator:has(.videocam) {
background: indianred;
}
.defaultCardBackground,
.cardScalable {
background: var(--cardBackgroundGradient);