Hallo zusammen,
ich habe das so gelöst.
CSS
/* Ausgewähltes Konto */
li.selected > .container {
background: white !important;
font-weight: bold! important;
color: red !important;
}
/* Posteingang */
#folderTree li[data-folder-type="inbox"] > .container > .icon {
background: url("file:///C:/Dropbox/Chrome/Icons/mail_1.png") no-repeat !important;
}
/* Entwürfe */
#folderTree li[data-folder-type="drafts"] > .container > .icon {
background: url("file:///C:/Dropbox/Chrome/Icons/datei.png") no-repeat !important;
}
/* Vorlagen */
#folderTree li[data-folder-type="templates"] > .container > .icon {
background: url("file:///C:/Dropbox/Chrome/Icons/vorlage.png") no-repeat !important;
}
/* Gesendet */
#folderTree li[data-folder-type="sent"] > .container > .icon {
background: url("file:///C:/Dropbox/Chrome/Icons/gesendet.png") no-repeat !important;
}
/* Archiv */
#folderTree li[data-folder-type="archive"] > .container > .icon {
background: url("file:///C:/Dropbox/Chrome/Icons/archive.png") no-repeat !important;
}
/* Junk */
#folderTree li[data-folder-type="junk"] > .container > .icon {
background: url("file:///C:/Dropbox/Chrome/Icons/junk.png") no-repeat !important;
}
/* Papierkorb */
#folderTree li[data-folder-type="trash"] > .container > .icon {
background: url("file:///C:/Dropbox/Chrome/Icons/papierkorb.png") no-repeat !important;
}
/* Accounts */
#folderTree li:is([data-server-type="imap"], [data-server-type="pop3"])[data-server-secure="true"] > .container > .icon {
background: url("file:///C:/Dropbox/Chrome/Icons/mail_aktuell.png") no-repeat !important;
}
/* Unter-Accounts */
#folderTree .icon {
background: url("file:///C:/Dropbox/Chrome/Icons/ordner_blue.png") no-repeat !important;
}
/* RSS -Feeds */
#folderTree li[data-server-type="rss"] > .container > .icon {
background: url("file:///C:/Dropbox/Chrome/Icons/feed_blau.png") no-repeat !important;
}
/* RSS - Feeds - Unterordner */
#smart-bWFpbGJveDovL25vYm9keUBGZWVkcy9FcndlaXRlcnVuZ2Vu .icon,
#smart-bWFpbGJveDovL25vYm9keUBGZWVkcy9UaHVuZGVyYmlyZCUyMEJsb2c\= .icon {
background: transparent !important;
}
/* Lokale Ordner */
#folderTree li[data-server-type="none"] > .container > .icon {
background: url("file:///C:/Dropbox/Chrome/Icons/ordner_blue.png") no-repeat !important;
}
/* Postausgang */
#folderTree li[data-folder-type="outbox"] > .container > .icon {
background: url("file:///C:/Dropbox/Chrome/Icons/mail-senden.png") no-repeat !important;
}
Alles anzeigen
Code geändert am 21.08.2023 um 18:45 Uhr
So wie ich das sehe benutzt Du auch den alten Code von mir.
Gruß
EDV-Oldie