1. Home
  2. News
  3. Download
    1. Thunderbird Release Version
    2. Thunderbird 140 ESR
    3. Thunderbird 128 ESR
    4. Thunderbird 115 ESR
    5. Thunderbird Beta Version
    6. Language Pack (User Interface)
    7. Dictionaries (Spell Check)
  4. Help & Lexicon
    1. Instructions for Thunderbird
    2. Questions & Answers (FAQ) about Thunderbird
    3. Help for this Website
  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. Themes

Posteingang gestalten

    • 91.*
    • Windows
  • Jesaja
  • April 28, 2022 at 6:39 PM
  • Closed
  • Thread is Unresolved
  • Jesaja
    Junior Member
    Posts
    2
    Member since
    28. Apr. 2022
    • April 28, 2022 at 6:39 PM
    • #1

    Hallo,

    ich benutze das thunderbird emailprogramm Version 91.8.1. Wie kann ich den Posteingangsordner so gestalten, daß jedes email immer abwechselnd farblich unterlegt ist ?

  • graba April 28, 2022 at 6:42 PM

    Approved the thread.
  • dharkness21
    Senior Member
    Reactions Received
    510
    Posts
    2,008
    Member since
    29. Jun. 2005
    Helpful answers
    55
    • April 28, 2022 at 7:39 PM
    • #2

    Hallo und willkommen im Forum.

    Quote from Jesaja

    daß jedes email immer abwechselnd farblich unterlegt ist ?

    Teste mal das * in der userChrome.css, selbige ist im Profil im anzulegenden Ordner chrome anzulegen.

    *

    CSS
    treechildren::-moz-tree-row {
        appearance: none !important;
        background-color: #4f555b !important;
    }
    treechildren::-moz-tree-row(odd) {
        appearance: none !important;
        background-color: #363a3e !important;
    }

    Zusätzlich muss unten in den Einstellungen bei Allgemein in Konfiguration bearbeiten… die ** Pref per Doppelklick auf true gestellt werden und Tb neu gestartet werden.

    **

    toolkit.legacyUserProfileCustomizations.stylesheets

    und wech

    Dharkness

  • nowar
    Member
    Reactions Received
    8
    Posts
    116
    Member since
    8. Apr. 2022
    Helpful answers
    5
    • April 28, 2022 at 8:39 PM
    • #3
    Quote from Jesaja

    Wie kann ich den Posteingangsordner so gestalten, daß jedes email immer abwechselnd farblich unterlegt ist ?

    CSS
    /* Set preference toolkit.legacyUserProfileCustomizations.stylesheets to true !! */
    
    
    /* colour for even numbered rows */
    treechildren::-moz-tree-row(even) {
    background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.08)) !important;  /* Highlight, complication for tagged rows */
    }
    
    
    /* previously selected item, now deselected */
    treechildren::-moz-tree-row(untagged, selected) {
    border: none !important;  /* needed so suppress 'native' selection border */
    background-image: linear-gradient(#c0d0ff, #c0d0ff) !important;  /* Highlight, complication for tagged rows */
    }
    
    
    treechildren::-moz-tree-row(untagged, selected, focus) {
    /* Original TB colour cde8ff + three steps darker in GIMP. */
    background-image: linear-gradient(#c4dff6, #c4dff6) !important;  /* Highlight, complication for tagged rows */
    }
    
    
    treechildren::-moz-tree-row(untagged, hover) {
    /* Original TB colour cde8ff + four steps lighter in GIMP. */
    background-image: linear-gradient(#d8f3ff, #d8f3ff) !important;  /* very pale blue, complication for tagged rows */
    }
    
    
    treechildren::-moz-tree-row(untagged, selected, focus, hover) {
    /* Original TB colour cde8ff. */
    background-image: linear-gradient(#cde8ff, #cde8ff) !important;  /* Highlight, but lighter, complication for tagged rows */
    }
    
    
    treechildren::-moz-tree-cell(dropOn) {
    background-image: none !important;     /* needed so target background is solid */
    background-color: #ff8080 !important;
    }
    
    
    .autocomplete-richlistitem:hover {
    background-color: #ff8080 !important;
    }
    
    
    #threadTree[filterActive="searching"] {
    background-color: #ffffcc !important;
    }
    
    
    #threadTree[filterActive="matches"] {
    background-color: #f0ffff ! important;
    }
    
    
    #threadTree[filterActive="nomatches"] {
    background: repeating-linear-gradient(-45deg, #fff0f4,
    #fff0f4 5px, white 5px, white 10px) !important;
    }
    
    
    #folderTree {
    --primary: #196f3d !important;
    }
    
    
    treechildren::-moz-tree-row(multiline, unread) {
    border-left: 3px solid #0080C0 !important;
    background-color: rgba(0, 128, 192, 0.1) !important;
    }
    Display More

  • Jesaja
    Junior Member
    Posts
    2
    Member since
    28. Apr. 2022
    • May 1, 2022 at 4:58 PM
    • #4

    Danke für eure mithilfe,

    aber ehrlich gesagt verstehe ich nur Bahnhof. Wo finde ich das CSS bzw. userChrome ?

  • dharkness21
    Senior Member
    Reactions Received
    510
    Posts
    2,008
    Member since
    29. Jun. 2005
    Helpful answers
    55
    • May 1, 2022 at 5:09 PM
    • #5
    Quote from Jesaja

    Wo finde ich das CSS bzw. userChrome ?

    Guckst Du da → #Benutzeroberfläche per userChrome.css anpassen.

    und wech

    Dharkness

  • Mapenzi
    Senior Member
    Reactions Received
    1,101
    Posts
    12,275
    Member since
    26. May. 2012
    Helpful answers
    128
    • May 1, 2022 at 8:24 PM
    • #6

    Als Alternative zu den vorigen Code möchte ich folgenden CSS-Code für die Zebra-Streifung in der Nachrichten/Themenliste vorstellen. Der Code ist übrigens nicht nur für den Posteingang gültig, sondern für alle Ordner.

    CSS
    /* ::: Alternating row colors in thread pane ::: */
    
    #threadTree treechildren::-moz-tree-row(multicol, odd, untagged) {
      background-color: azure !important; }
    
    #threadTree treechildren::-moz-tree-row(untagged, selected) {
    background-color: #c0d0ff !important; }
    
    #threadTree treechildren::-moz-tree-row(untagged, selected, focus) {
    background-color: Highlight !important; }
    
    #threadTree treechildren::-moz-tree-row(selected, current, focus) {
     border: 1.2px dotted blue !important; }
    
    #threadTree treechildren::-moz-tree-row(selected) {
    border: 1.2px dotted blue !important; }
    
    #threadTree treechildren { 
    background-color: #e6eff1 !important; }
    Display More

    Das sieht dann hier unter macOS so aus

  • Community-Bot September 3, 2024 at 8:50 PM

    Closed the thread.

Current app version

  • Thunderbird 147.0 veröffentlicht

    Thunder January 15, 2026 at 12:54 PM

Current 140 ESR version

  • Thunderbird 140.7.0 veröffentlicht

    Thunder January 15, 2026 at 12:58 PM

Current 128 ESR version

  • Thunderbird 128.14.0 ESR veröffentlicht

    Thunder August 21, 2025 at 3:04 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

Similar Threads

  • 3 Spalten Ansicht Posteingang übersichtlicher gestalten möglich?

    • jonlar
    • August 6, 2021 at 11:09 AM
    • Allgemeines Arbeiten / Konten einrichten / Installation & Update
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™