How to remove Spaces Toolbar icon?

Discussion about official Mozilla Thunderbird builds
Post Reply
TimoJ
Posts: 3
Joined: June 3rd, 2022, 2:26 am

How to remove Spaces Toolbar icon?

Post by TimoJ »

I don't use or need Spaces Toolbar. Is there a way to disable it? Or how can I hide it's statusbar icon with userchrome.css? I managed to hide it's tabs toolbar icon but haven't found a way to do the same to the lower left corner statusbar icon.
User avatar
WaltS48
Posts: 5141
Joined: May 7th, 2010, 9:38 am
Location: Pennsylvania, USA

Re: How to remove Spaces Toolbar icon?

Post by WaltS48 »

TimoJ wrote:I don't use or need Spaces Toolbar. Is there a way to disable it? Or how can I hide it's statusbar icon with userchrome.css? I managed to hide it's tabs toolbar icon but haven't found a way to do the same to the lower left corner statusbar icon.
Spaces Toolbar is a new feature in Thunderbird 102.0b1 in case anyone is wondering.

The OP has found the way to collapse the toolbar, and it appears to remove the "Spaces Menu" icon from the Mail Toolbar. Now wanting to remove the |<- icon in the Status Bar.

The topic probably belongs in the Thunderbird Builds forum.
Linux Desktop - AMD Athlon(tm) II X3 455 3.3GHz | 8.0GB RAM | GeForce GT 630
Windows Notebook - AMD A8 7410 2.2GHz | 6.0GB RAM | AMD Radeon R5
User avatar
DanRaisch
Moderator
Posts: 127186
Joined: September 23rd, 2004, 8:57 pm
Location: Somewhere on the right coast

Re: How to remove Spaces Toolbar icon?

Post by DanRaisch »

Moving to Thunderbird Builds forum.
siffemoz
Posts: 250
Joined: January 29th, 2016, 4:36 pm

Re: How to remove Spaces Toolbar icon?

Post by siffemoz »

In userChrome.css:

#spacesToolbarReveal {display:none !important;}
TimoJ
Posts: 3
Joined: June 3rd, 2022, 2:26 am

Re: How to remove Spaces Toolbar icon?

Post by TimoJ »

siffemoz wrote:In userChrome.css:

#spacesToolbarReveal {display:none !important;}
I already had that and it doesn't work/appear to do anything. I can still see its horizontal arrow button on the left bottom corner.
User avatar
BruceAWittmeier
Posts: 3076
Joined: June 9th, 2008, 10:53 am
Location: Near 37.501685 -80.147967

Re: How to remove Spaces Toolbar icon?

Post by BruceAWittmeier »

^^^ Mee too. :) Doesn't seem to work.
I often take a long windy road to my destination. Upon arrival, I wonder how I missed the shortcut.
morat
Posts: 6403
Joined: February 3rd, 2009, 6:29 pm

Re: How to remove Spaces Toolbar icon?

Post by morat »

How to hide the show spaces toolbar horizontal arrow button (lower left corner) when the spaces toolbar is disabled.

note: not tested

Code: Select all

/* Thunderbird userChrome.css */

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");

html|button#spacesToolbarReveal {
  display: none !important;
}
Similar thread: http://forums.mozillazine.org/viewtopic ... &t=3100562
TimoJ
Posts: 3
Joined: June 3rd, 2022, 2:26 am

Re: How to remove Spaces Toolbar icon?

Post by TimoJ »

morat wrote:How to hide the show spaces toolbar horizontal arrow button (lower left corner) when the spaces toolbar is disabled.

note: not tested

Code: Select all

/* Thunderbird userChrome.css */

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");

html|button#spacesToolbarReveal {
  display: none !important;
}
Similar thread: http://forums.mozillazine.org/viewtopic ... &t=3100562
This works, thank you!
siffemoz
Posts: 250
Joined: January 29th, 2016, 4:36 pm

Re: How to remove Spaces Toolbar icon?

Post by siffemoz »

I wonder why my one-line code works - and has worked for at least one other - without the namespace lines, which I stopped using years ago? And why does yours need the namespace lines for it to work?
morat wrote:How to hide the show spaces toolbar horizontal arrow button (lower left corner) when the spaces toolbar is disabled.

note: not tested

Code: Select all

/* Thunderbird userChrome.css */

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");

html|button#spacesToolbarReveal {
  display: none !important;
}
Similar thread: http://forums.mozillazine.org/viewtopic ... &t=3100562
User avatar
BruceAWittmeier
Posts: 3076
Joined: June 9th, 2008, 10:53 am
Location: Near 37.501685 -80.147967

Re: How to remove Spaces Toolbar icon?

Post by BruceAWittmeier »

I often take a long windy road to my destination. Upon arrival, I wonder how I missed the shortcut.
Post Reply