1. Home
  2. News
  3. Download
    1. Thunderbird Release Version
    2. Thunderbird 140 ESR
    3. Thunderbird 115 ESR
    4. Thunderbird Beta Version
    5. Language Pack (User Interface)
    6. Dictionaries (Spell Check)
  4. Help & Lexicon
    1. Instructions for Thunderbird
    2. Questions & Answers (FAQ) about Thunderbird
    3. Help for this Website
    4. Last Changes
  5. Forums
    1. Unresolved Threads
    2. Latest Posts
    3. Threads of the last 24 hours
  • Login
  • Register
  • 
  • Search
This Thread
  • Everywhere
  • This Thread
  • This Forum
  • Forum
  • Lexicon
  • Articles
  • Pages
  • More Options
  1. Thunderbird Mail DE
  2. Forum
  3. Hilfe zu Add-ons und manuellen Anpassungen
  4. Manuelle Anpassungen per CSS oder Script

TB115 Formatieren der Nachrichtenliste - Hintergrundfarbe setzen für selektiertes ungelesene Nachricht funktioniert nicht

    • 115 ESR
    • macOS
  • micho2
  • July 17, 2023 at 7:26 PM
  • Closed
  • Thread is Unresolved
  • micho2
    Member
    Posts
    15
    Member since
    14. Jun. 2007
    • July 17, 2023 at 7:26 PM
    • #1

    MacOS 13.4.1 (c) (22F770820d)

    Es soll in der Nachrichtenliste:

    • das gehoverte Element rot hervorgehoben werden [klappt]
    • ungelesene Elemente gelber Hintergrund [klappt]
    • das selektierte Element in der Liste Color blau [klappt]
    • das selektierte Element in der Liste Hintergrundfarbe lightgray [klappt nur für gelesene Elemente, NICHT FÜR UNGELESENE]

    Wie kann man das beheben?

    CSS
    div .thread-card-container:hover{
    background-color: lightgray !important;  
    color: red !important;
    opacity: 1 !important;
    }
    
    /* ungelesene Elemente in der Nachrichtenliste */
    #threadTree tbody [data-properties~="unread"] {
      _background-color: lightgoldenrodyellow !important;
      background-color: lightyellow !important;
    }
    
    /* Die selektierte Nachricht in der Liste */
    [is="tree-view-table-body"]:focus > .selected, [is="tree-view-table-body"]:focus-within > .selected {
      background-color: lightgray !important;  /* das wirkt leider nicht in ungeleseenn Elementen */
      color: blue !important;
    }
    Display More
  • dharkness21
    Senior Member
    Reactions Received
    489
    Posts
    2,030
    Member since
    29. Jun. 2005
    Helpful answers
    55
    • July 17, 2023 at 7:55 PM
    • #2
    Quote from micho2

    Es soll in der Nachrichtenliste:

    das selektierte Element in der Liste Hintergrundfarbe lightgray [klappt nur für gelesene Elemente, NICHT FÜR UNGELESENE]

    Wie kann man das beheben?

    Teste bitte mal das ↓.

    CSS
    tr[data-properties~="untagged"][data-properties~="unread"].selected {
        background-color: #C0C0C0 !important;
        color: #0082FC !important;
    }

    und wech

    Dharkness

  • micho2
    Member
    Posts
    15
    Member since
    14. Jun. 2007
    • July 18, 2023 at 8:16 AM
    • #3

    danke, wirkt leider nicht.

    hatte vorher

    Code
    [is="tree-view-table-body"]:focus > .selected, [is="tree-view-table-body"]:focus-within > .selected {

    rausgenommen

  • heinerwm
    Member
    Reactions Received
    19
    Posts
    132
    Member since
    28. Sep. 2007
    Helpful answer
    1
    • July 20, 2023 at 12:10 PM
    • #4

    Einen zum Thema passenden Beitrag gibt es im mozillaZine - Forum: http://forums.mozillazine.org/viewtopic.php?f=39&t=3111115.

    Gruß Heiner

  • ThoBa
    Senior Member
    Reactions Received
    507
    Posts
    1,562
    Member since
    17. Nov. 2019
    Helpful answers
    21
    • July 21, 2023 at 12:48 PM
    • #5

    Hallo dharkness21,

    Quote from dharkness21

    Teste bitte mal das ↓.

    CSS
    tr[data-properties~="untagged"][data-properties~="unread"].selected {
        background-color: #C0C0C0 !important;
        color: #0082FC !important;
    }

    damit wir endlich einmal einen ausführlichen Thread zu diesem Thema

    hätten, fehlt eigentlich nur noch die Hintergrundfarbe eines

    geschlossenen Threads, wenn dieser ungelesene Beiträge enthält (default

    ist unterstrichen).

    Könntest du hierzu bitte auch ein Beispiel aufzeigen?

    Vielen Dank!

    Gruß ThoBa
    Newsgroup (nntps):
    <news:de.comm.software.mozilla.mailnews>

    Schaut doch einfach mal rein! :bindafuer:

  • dharkness21
    Senior Member
    Reactions Received
    489
    Posts
    2,030
    Member since
    29. Jun. 2005
    Helpful answers
    55
    • July 21, 2023 at 3:08 PM
    • #6
    Quote from ThoBa

    fehlt eigentlich nur noch die Hintergrundfarbe eines

    geschlossenen Threads, wenn dieser ungelesene Beiträge enthält

    Teste bitte mal das ↓.

    CSS
    #threadTree tbody .children.collapsed[data-properties~="hasUnread"][data-properties~="read"] :where(td) {
        appearance: none !important;
        background-color: #F20 !important;
        color: #eee8aa !important;
    }
    #threadTree tbody .children.collapsed[data-properties~="hasUnread"][data-properties~="read"].selected :where(td) {
        appearance: none !important;
        background-color: #800 !important;
        color: #eee8aa !important;
    }
    #threadTree tbody .children.collapsed[data-properties~="hasUnread"][data-properties~="read"]:hover :where(td),
    #threadTree tbody .children.collapsed[data-properties~="hasUnread"][data-properties~="read"].selected:hover :where(td) {
        appearance: none !important;
        background-color: #D1E2F2 !important;
        color: #000 !important;
    }
    Display More

    und wech

    Dharkness

  • ThoBa
    Senior Member
    Reactions Received
    507
    Posts
    1,562
    Member since
    17. Nov. 2019
    Helpful answers
    21
    • July 21, 2023 at 3:29 PM
    • #7

    Hallo dharkness21,

    Quote from dharkness21

    Teste bitte mal das ↓.

    CSS
    #threadTree tbody .children.collapsed[data-properties~="hasUnread"][data-properties~="read"] :where(td) ...

    Einfach genial! :thumbsup:

    Vielen herzlichen Dank :!:

    Gruß ThoBa
    Newsgroup (nntps):
    <news:de.comm.software.mozilla.mailnews>

    Schaut doch einfach mal rein! :bindafuer:

  • dharkness21
    Senior Member
    Reactions Received
    489
    Posts
    2,030
    Member since
    29. Jun. 2005
    Helpful answers
    55
    • July 21, 2023 at 3:33 PM
    • #8
    Quote from ThoBa

    Einfach genial! :thumbsup:

    Vielen herzlichen Dank :!:

    Aber gerne doch. :)

    und wech

    Dharkness

  • Community-Bot September 3, 2024 at 9:00 PM

    Closed the thread.

Current app version

  • Thunderbird 152.0.1 veröffentlicht

    Thunder July 4, 2026 at 1:02 PM

Current 140 ESR version

  • Thunderbird 140.12.1 ESR veröffentlicht

    Thunder July 4, 2026 at 1:05 PM

No Advertisements

There are no advertisements here. Maybe you give the website owner (Alexander Ihrig - aka "Thunder") instead something to be able to finance these sites in the long run. Many Thanks!

Thank you for the support!

Coffee to be spent?

Donate now via Paypal*

*Forwarding to PayPal.Me

Thunderbird Mail DE
  1. Imprint & Contact
  2. Privacy Policy
    1. Cookie Policy
  3. Terms of Use
  4. Donation Call for Thunderbird
Help for this website
  • All website support articles
  • How to use website search
  • How to create a forums user account
  • How to create and edit a forums thread
  • How to reset your forums password
Copyright © 2003-2026 Thunderbird Mail DE

You are NOT on an official page of the Mozilla Foundation. Mozilla®, mozilla.org®, Firefox®, Thunderbird™, Bugzilla™, Sunbird®, Seamonkey®, XUL™ and the Thunderbird logo are (among others) registered trademarks of the Mozilla Foundation.

Powered by WoltLab Suite™