Thunderbird 115: CSS Customization


Do you mean the thin lightgrey Vertical line (splitter) ? If so try:
Code:
/* change color of the folderPane splitter */
#folderPaneSplitter {
border-color:  var(--sidebar-background) !important;   
}

Use either the variable var(--sidebar-background) or any specific color which you want.

For the Composition Window, try changing the background in Settings > Composition HTML style as shown (untick "Use reader's default colours") and set your own color by clicking on the "Background Color" button:
Composition.webp
 

My Computer

System One

  • OS
    Windows 11 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    custom
    CPU
    intel i7-8700 (non-K)
    Motherboard
    Asus Z370 TUF Gaming
    Memory
    32Gb
    Graphics Card(s)
    On-board Intel iGPU
    Sound Card
    On-board Realtek
    Hard Drives
    Samsung_SSD_850_EVO
    PSU
    Corsair Rm850X
    Cooling
    All air
Sorry, I forgot about the color in settings. I'm getting old. :oops:
Not the splitter, the threads pane background which is white.
 
Last edited:

My Computer

System One

  • OS
    Windows 11
    Computer type
    Laptop
    Manufacturer/Model
    Thinkpad L460
    CPU
    Skylake Gen 6
Try:
Code:
/* message pane background */
#threadPane > tree-view {
  background-color: var(--sidebar-background) !important;
}

(Again use either the variable as shown or use a specific color that you want there).

In Cards view, the empty portion of the pane below the messages will work with the above CSS. If you want to set the background 'around' the cards as well try:
Code:
/* messages pane background (cards layout , table layout) */
#threadTree[rows="thread-card"] .card-layout td,
#threadPane > tree-view {
  background-color: var(--sidebar-background) !important;     /* use either the variable as shown or use a specific color*/
}

threadPane-cards.webp
 

My Computer

System One

  • OS
    Windows 11 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    custom
    CPU
    intel i7-8700 (non-K)
    Motherboard
    Asus Z370 TUF Gaming
    Memory
    32Gb
    Graphics Card(s)
    On-board Intel iGPU
    Sound Card
    On-board Realtek
    Hard Drives
    Samsung_SSD_850_EVO
    PSU
    Corsair Rm850X
    Cooling
    All air
As a quick test I tried the code below, but nothing changes and the background behind the threads is still white . Don' know what cards view is or howto, so I probaly don't use it.

/* message pane background */
#threadPane > tree-view {
background-color: orange !important;
}
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    Laptop
    Manufacturer/Model
    Thinkpad L460
    CPU
    Skylake Gen 6
This is what the code for the threadpane you tested shows.

Orange_threadPane.webp

Make a backup of your userChrome.css file, and create a new one with just the code you posted, to see if it works. If it does, then there could be an error in your original file (eg. if it is being over-ridden by some other code, or if a section of code is incomplete).

If you want, you can post your userChrome.css here so we can check it. Or, you can paste your code in the following site to see if it shows anything obvious (It might not be 100% accurate, but it may point out something you might have missed).
 
Last edited:

My Computer

System One

  • OS
    Windows 11 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    custom
    CPU
    intel i7-8700 (non-K)
    Motherboard
    Asus Z370 TUF Gaming
    Memory
    32Gb
    Graphics Card(s)
    On-board Intel iGPU
    Sound Card
    On-board Realtek
    Hard Drives
    Samsung_SSD_850_EVO
    PSU
    Corsair Rm850X
    Cooling
    All air
The problem was caused by a section that I commented out. Not sure why it was causing the problem
/*-----------------------------------------
Thread list spacing
/* Below reduced the size which changed the font. You */
/* can play with the size or rem it to use default */
/* :root { --list-item-min-height: 10px !important; } */

tr[is="thread-row"] {
height: 17.8px !important;
}
-----------------------------------------*/
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    Laptop
    Manufacturer/Model
    Thinkpad L460
    CPU
    Skylake Gen 6
Do you guys try using themes instead of recoding stuff?
 

Attachments

  • Screenshot 2025-02-24 154706.webp
    Screenshot 2025-02-24 154706.webp
    133.8 KB · Views: 1

My Computers

System One System Two

  • OS
    Windows 11 24H2
    Computer type
    Laptop
    Manufacturer/Model
    Alienware M17 R3
    CPU
    Intel Core i7-10750H (Comet Lake)
    Motherboard
    Alienware
    Memory
    32GB DDR4
    Graphics Card(s)
    NVIDIA GeForce RTX 2060 and Intel UHD Graphics
    Sound Card
    Realtek ALC3281-CG
    Monitor(s) Displays
    17"
    Screen Resolution
    3840x2160
    Hard Drives
    Micron 2300 NVMe 1TB
    PC SN530 NVMe WDC 512GB
    Mouse
    Logitech MX Master 3
    Internet Speed
    60mbps
    Browser
    Vivaldi and Firefox
    Antivirus
    MS Defender and Malwarebytes Free
  • Operating System
    Windows 11 24H2
    Computer type
    Laptop
    Manufacturer/Model
    Microsoft Surface Laptop 3
    CPU
    Intel Core i7-1065G7 (Ice Lake)
    Motherboard
    Microsoft Corp.
    Memory
    16GB DDR4
    Graphics card(s)
    Intel Iris Plus Graphics
    Sound Card
    Omnisonic Speakers with Dolby Audio
    Monitor(s) Displays
    13.5” PixelSense Touchscreen Display
    Screen Resolution
    2256x1504
    Hard Drives
    Toshiba Memory 512GB
    Mouse
    Surface Arc Mouse
    Internet Speed
    60 mbps
    Browser
    Vivaldi and Firefox
    Antivirus
    MS Defender and Malwarebytes Free
@click click;
The comment section started at Line 1 got closed off at the end of line 3, not 10, leaving a hanging "*/" at the end of line 10.
....the first instance of "*/" that follows an instance of "/*" closes the comment.
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_syntax/Comments
 
Last edited:

My Computer

System One

  • OS
    Windows 11 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    custom
    CPU
    intel i7-8700 (non-K)
    Motherboard
    Asus Z370 TUF Gaming
    Memory
    32Gb
    Graphics Card(s)
    On-board Intel iGPU
    Sound Card
    On-board Realtek
    Hard Drives
    Samsung_SSD_850_EVO
    PSU
    Corsair Rm850X
    Cooling
    All air
@click click;
The comment section started at Line 1 got closed off at the end of line 3, not 10, leaving a hanging "*/" at the end of line 10.
....the first instance of "*/" that follows an instance of "/*" closes the comment.
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_syntax/Comments
I did not realize that. Will keep that in mind. Thanks for the pointer. Always something new to learn...
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    Laptop
    Manufacturer/Model
    Thinkpad L460
    CPU
    Skylake Gen 6

Latest Support Threads

Back
Top Bottom