Important Notice: We're experiencing email notification issues. If you've posted a question in the community forums recently, please check your profile manually for responses while we're working to fix this.

On Monday the 3rd of March, around 5pm UTC (9am PT) users may experience a brief period of downtime while one of our underlying services is under maintenance.

সহায়তা খুঁজুন

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

আরও জানুন

Usability issues with the blue background for email headers

  • 1 উত্তর
  • 1 এই সমস্যাটি আছে
  • 1 দেখুন
  • শেষ জবাব দ্বারা Toad-Hall

more options

Is anything going to be done with this that I raised with a previous release of Thunderbird? https://support.mozilla.org/en-US/questions/1022375

My comment still stands.

I had been running the version of Thunderbird prior to this change until last week and something screwed up with TB and I had to reinstall. I now have the wretched blue boxes that I had managed to avoid until last week.

Is anything going to be done with this that I raised with a previous release of Thunderbird? https://support.mozilla.org/en-US/questions/1022375 My comment still stands. I had been running the version of Thunderbird prior to this change until last week and something screwed up with TB and I had to reinstall. I now have the wretched blue boxes that I had managed to avoid until last week.

All Replies (1)

more options

I agree with you, so this is what I've done to get things closer to the original.

make hidden files and folders visible:

In Thunderbird

  • Help > Troubleshooting Information
  • click on 'show Folder' button

a new window opens showing contents of profile folders -

  • Close Thunderbird now - this is important
  • Create a new folder called chrome - note the spelling.

So in Profile folder looks like the first image below.

  • Open Notepad
  • Copy paste all the contents shown between the lines below into notepad and then save the file as userChrome.css (note the spelling) in the chrome folder.
  • Close window - top right X

see second image.

  • start Thunderbird
  • click on 'Write'

/*
 
* Do not remove the @namespace line -- it's required for correct functioning
 */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 
/* set default namespace to XUL */

/*Changes Write window look after v31 update*/
/* ::::: From: msgIdentity box ::::: */

#msgIdentity {
background-color: -moz-Field !important;
transition: border .0s, background-color .0s !important;
border-radius: 2px !important;
}

@media not all and (-moz-windows-default-theme) {
#msgIdentity {
border-width: 0px !important;
}

#msgIdentity:hover,
#msgIdentity[focused="true"] {
background-color: -moz-Field !important;
border-width: 0px !important;
}
}


/* ::::: To, Cc, Bcc button ::::: */

@media not all and (-moz-windows-default-theme) {
.aw-menulist {
margin-top: 0px !important;
-moz-margin-end: 4px !important;
border-width: 0px !important;
background-color: rgba(128, 128, 128, .15) !important;
transition: background-color .05s ease-in !important;
}

.aw-menulist:hover {
background-color: rgba(128, 128, 128, .3) !important;
}

.aw-menulist[open="true"] {
background-color: rgba(128, 128, 128, .05) !important;
}

.aw-menulist:-moz-window-inactive {
opacity: .7 !important;
}
}

.aw-menulist > .menulist-label-box {
margin: 1px 0 -1px 0 !important;
}


/* ::::: addressing widget ::::: */

#textcol-addressingWidget {
background-color: -moz-Field !important;
border-width: 0px !important;
}

.textbox-addressingWidget {
margin-bottom: 0px !important;
margin-bottom: 0px !important;
transition: border .0s, background-color .0s !important;
}

.dummy-row-cell:not(:first-child) {
margin-bottom: 0px !important;
}

@media not all and (-moz-windows-default-theme) {
.textbox-addressingWidget {
background-color: transparent !important;
border-width: 0px !important;
}

.dummy-row-cell:not(:first-child) {
background-color: transparent !important;
border-width: 0px !important;
}

.textbox-addressingWidget:hover,
.textbox-addressingWidget[focused="true"] {
background-color: transparent !important;
border-width: 0px !important;
}
}


/* ::::: subject box ::::: */

#subject-box {
margin-top: 1px !important;
}

#msgSubject {
background-color: -moz-Field !important;
transition: border .0s, background-color .0s !important;
border-width: 0px !important;
}

@media not all and (-moz-windows-default-theme) {
#msgSubject {
border-width: 0px !important;
}

#msgSubject:hover,
#msgSubject[focused="true"] {
background-color: -moz-Field !important;
border-width: 0px !important;
}
}