TB 29 - Sending email

Discussion about official Mozilla Thunderbird builds
Post Reply
jl123
Posts: 143
Joined: November 7th, 2005, 6:56 pm

TB 29 - Sending email

Post by jl123 »

When I go to send, reply or forward an email the To:, BCC: and Subject fields are all blue.

Is this something new or a bug that needs to be reported?

Image
image hosting gif
Windows 10 Pro 64bit - Firefox 115.0.2 Thunderbird 115.0
Bozz
Posts: 2684
Joined: October 18th, 2007, 1:53 pm

Re: TB 29 - Sending email

Post by Bozz »

It's new GUI.
jl123
Posts: 143
Joined: November 7th, 2005, 6:56 pm

Re: TB 29 - Sending email

Post by jl123 »

OK.
Thanks, sort of surprised me.
Windows 10 Pro 64bit - Firefox 115.0.2 Thunderbird 115.0
User avatar
L.A.R. Grizzly
Posts: 5396
Joined: March 15th, 2005, 5:32 pm
Location: Upstate Ohio, USA
Contact:

Re: TB 29 - Sending email

Post by L.A.R. Grizzly »

jl123 wrote:OK.
Thanks, sort of surprised me.


If you want to return to a look that's similar to the old style, you can use the code below:

Code: Select all

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

    .textbox-addressingWidget,
    .dummy-row-cell:not(:first-child) {
      background-color: -moz-field !important;
      transition: border .0s, background-color .0s !important;
    }

    @media (-moz-windows-default-theme) {
      .textbox-addressingWidget,
      .dummy-row-cell:not(:first-child) {
        background-color: -moz-field !important;
        border: 1px solid transparent !important;
        border-top-color: ThreeDShadow !important;
        border-right-color: ThreeDShadow !important;
        border-bottom-color: ThreeDShadow !important;
        border-left-color: ThreeDShadow !important;
      }

      .textbox-addressingWidget:hover,
      .textbox-addressingWidget[focused="true"] {
        background-color: -moz-field;
        border-top-color: ThreeDShadow !important;
        border-right-color: ThreeDShadow !important;
        border-bottom-color: ThreeDShadow !important;
        border-left-color: ThreeDShadow !important;
      }
    }

    @media not all and (-moz-windows-default-theme) {
      .textbox-addressingWidget,
      .dummy-row-cell:not(:first-child) {
        background-color: -moz-field !important;
        border: 2px solid transparent !important;
        -moz-border-top-colors: ThreeDShadow transparent !important;
        -moz-border-right-colors: ThreeDShadow transparent !important;
        -moz-border-bottom-colors: ThreeDShadow transparent !important;
        -moz-border-left-colors: ThreeDShadow transparent !important;


Image
Win7 Pro SP1 64 Bit
Comodo Internet Security
Pale Moon 33.0.2, Epyrus Mail 2.1.2, Firefox 115.8.0esr, Thunderbird 115.8.1, and SeaMonkey 2.53.18
Post Reply