FF 57 tabs toolbar

Discussion about official Mozilla Firefox builds
Jgr9
Posts: 77
Joined: September 2nd, 2015, 12:51 am

Re: FF 57 tabs toolbar

Post by Jgr9 »

So, this line is back. Any idea what it is or how to get rid of it?....

Note my bookmarks are also intentionally below the navbar, and the transparent white of the bars is removed, again intentionally.

Image
Brummelchen
Posts: 4480
Joined: March 19th, 2005, 10:51 am

Re: FF 57 tabs toolbar

Post by Brummelchen »

look in your current css tweaks - firefox 58 looks different by default and has NO line (might be a pre: or after: effect)
Jgr9
Posts: 77
Joined: September 2nd, 2015, 12:51 am

Re: FF 57 tabs toolbar

Post by Jgr9 »

I believe it is actually there with no modifications, and it's the border line above the navbar, which would separate it & the bookmark toobar (the white area) from the tabs/menu bar when they're above (the non-white area). I just can't figure out how to get rid of it.

I have this to remove the border line between the bookmark toolbar and the webpage:

Code: Select all

#navigator-toolbox::after {
display: none !important;
}
Is "before" not the opposite of "after" here?
Jgr9
Posts: 77
Joined: September 2nd, 2015, 12:51 am

Re: FF 57 tabs toolbar

Post by Jgr9 »

Here we go, I got it:

Code: Select all

#nav-bar {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

I've finally cleaned out most of my copy/pasted mess of a userChrome.css to get rid of most of the sections that weren't doing anything and this is what I'm left with. Note that this is for use with my old, I believe, full theme background image and layout that I've been using, or trying to use since like FF 3.0... :roll: There's still probably some pointless and/or redundant stuff in here, but I don't actually completely know what I'm doing.

Code: Select all

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

/* tabs on bottom */
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
#TabsToolbar {
	-moz-box-ordinal-group:1000!important;
	margin: 0 !important;
	padding: 0px !important;
	-moz-border-top-colors: !important;
	box-shadow: none;

}

/* Clear background and border/shadow from Navigation Toolbar */
#nav-bar {
	border: none !important;
    background-color:transparent !important;
/*    background-image:none !important;
    border-color:transparent !important;
    box-shadow:none !important;
	margin: 0 !important;
	border: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: none !important;
	border: none !important;
	box-shadow: none !important; */
	-moz-appearance: none !important;
	padding: 0px !important;
	margin: 0px  !important;
}

#PersonalToolbar {
    background-color:transparent !important;
    background-image:none !important;
    border-color:transparent !important;
    box-shadow:none !important;
	border:none !important;
	margin: 0 !important;
	height: 25px !important;
	  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
box-shadow: none !important;
}

#navigator-toolbox::after {
  content: "";
  display: -moz-box;
  -moz-box-ordinal-group: 101; /* tabs toolbar is 100 */
  height: 1px;
  background-color: ThreeDShadow;
}

#navigator-toolbox::after {
  display: none !important;
}

#nav-bar {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
Just wish there was still a way to get the old add-on toolbar back on the bottom.... :cry:
Brummelchen
Posts: 4480
Joined: March 19th, 2005, 10:51 am

Re: FF 57 tabs toolbar

Post by Brummelchen »

>> Just wish there was still a way to get the old add-on toolbar back on the bottom

use forum search please!
Jgr9
Posts: 77
Joined: September 2nd, 2015, 12:51 am

Re: FF 57 tabs toolbar

Post by Jgr9 »

I have.

And CTR/Aris/streetwolf say it's not possible with addons or userChrome now.
User avatar
Aris
Posts: 3248
Joined: February 27th, 2011, 10:14 am

Re: FF 57 tabs toolbar

Post by Aris »

@Jgr9
Brummelchen meant the workaround to load xul overlays and JavaScript by adding some files to Firefox main dir and profiles chrome folder. There was a thread or post for this somewhere on Mozillazine.
Brummelchen
Posts: 4480
Joined: March 19th, 2005, 10:51 am

Re: FF 57 tabs toolbar

Post by Brummelchen »

this dammit userscript.js thing.

but i think he meant to put the nav-bar to bottom?
well firefox had no addon-bar at the bottom since australis!?

another toolbar was noticed @ bugzilla, but not for firefox 57
Jgr9
Posts: 77
Joined: September 2nd, 2015, 12:51 am

Re: FF 57 tabs toolbar

Post by Jgr9 »

Nope, not the nav-bar. I do mean the old add-on bar back on the bottom of the window. Actually, I don't even want it for add-ons, but just as a small bordering bar (hopefully works with or is the color of my theme? I forget) between my window/webpage and taskbar.
aborix
Posts: 29
Joined: October 23rd, 2017, 1:23 pm

Re: FF 57 tabs toolbar

Post by aborix »

How about this:

Code: Select all

#tab-view-deck {padding-bottom: 20px}
User avatar
Kyliefan001
Posts: 380
Joined: August 19th, 2004, 8:54 pm
Location: Canada

Re: FF 57 tabs toolbar

Post by Kyliefan001 »

aborix wrote:How about this:

Code: Select all

#tab-view-deck {padding-bottom: 20px}
So I've got a blank area just above the Windows Task Bar!
How do I get my tabs to show up in it?

Thanks
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.11) Gecko/20101012/3.6.11
Post Reply