Turn address bar down arrow (show history) to always on?

User Help for Mozilla Firefox
Post Reply
Darrylp796
Posts: 2
Joined: December 18th, 2017, 9:52 am

Turn address bar down arrow (show history) to always on?

Post by Darrylp796 »

Anyone know how to turn the mouseover down arrow (show history) in the address bar to an always-on state? I have always disliked the fact that the developers have that down arrow disappear until one does a mouseover (hover) of that area of the address bar.

I used the Classic Theme Restorer legacy add-on to do this modification of the theme, but it is not compatible with Firefox (57+)
User avatar
smsmith
Moderator
Posts: 19979
Joined: December 7th, 2004, 8:51 pm
Location: Indiana

Re: Turn address bar down arrow (show history) to always on?

Post by smsmith »

For your userChrome.css file.

Code: Select all

.urlbar-history-dropmarker {
  opacity: 1 !important;
}
http://kb.mozillazine.org/UserChrome.css
Give a man a fish, and he eats for a day. Teach a man to fish, and he eats for a lifetime.
I like poetry, long walks on the beach and poking dead things with a stick.
Please do not PM me for personal support. Keep posts here in the Forums instead and we all learn.
User avatar
Gingerbread Man
Posts: 7735
Joined: January 30th, 2007, 10:55 am

Re: Turn address bar down arrow (show history) to always on?

Post by Gingerbread Man »

Darrylp796 wrote:I used the Classic Theme Restorer legacy add-on to do this modification of the theme, but it is not compatible with Firefox (57+)
:arrow: https://github.com/aris-t2/customcssforfx
Darrylp796
Posts: 2
Joined: December 18th, 2017, 9:52 am

Re: Turn address bar down arrow (show history) to always on?

Post by Darrylp796 »

Created a userChrome.css file, added the code above and it works well. Thank for the solutions and comments.
User avatar
Suze
Posts: 467
Joined: January 14th, 2004, 5:58 pm

Re: Turn address bar down arrow (show history) to always on?

Post by Suze »

this didn't work for me it just tells me what site im on
Suze
User avatar
mightyglydd
Posts: 9813
Joined: November 4th, 2006, 7:07 pm
Location: Hollywood Ca.

Re: Turn address bar down arrow (show history) to always on?

Post by mightyglydd »

smsmith wrote:For your userChrome.css file.

Code: Select all

.urlbar-history-dropmarker {
  opacity: 1 !important;
}
http://kb.mozillazine.org/UserChrome.css


Aha ! Thanks for that.
The disappearing act seems rather counterproductive, one forgets the damned things there....
#KeepFightingMichael and Alex.
User avatar
costark
Posts: 548
Joined: July 14th, 2004, 5:03 am

Re: Turn address bar down arrow (show history) to always on?

Post by costark »

Would my use of the Firefox Blue & Orange Theme by engin1984 (i.e. Not a FF Theme) be WHY this doesn't work?

Assuming my layout looks right per attached........... Thanks!

https://i.imgur.com/AftnKut.jpg
W10 22H2 - SSD-HDD i5 12G -
User avatar
jscher2000
Posts: 11758
Joined: December 19th, 2004, 12:26 am
Location: Silicon Valley, CA USA
Contact:

Re: Turn address bar down arrow (show history) to always on?

Post by jscher2000 »

Hi costark, it looks like you are missing a second closing } on the immediately previous rule -- the number of { and } should always match:

Code: Select all

@media (min-resolution: 2dppx) {
  .tab-throbber[busy]::before {
    background-image: url("chrome://global/skin/icons/loading@2x.png") !important;
  }
}
User avatar
costark
Posts: 548
Joined: July 14th, 2004, 5:03 am

Re: Turn address bar down arrow (show history) to always on?

Post by costark »

jscher2000 wrote:Hi costark, it looks like you are missing a second closing } on the immediately previous rule -- the number of { and } should always match:

Code: Select all

@media (min-resolution: 2dppx) {
  .tab-throbber[busy]::before {
    background-image: url("chrome://global/skin/icons/loading@2x.png") !important;
  }
}
Absolutely correct. Expression Brackets appear to alternate Left, then right, yet the @media (last section in rotating throbbers) ended Left, Left, Right, Right.
I never would have noticed that. So busy finishing up what dark matter & energy are & how to worm-hole travel I just don't have time to learn all of this.

Many Thanks. And for the Missing Bookmarks Toolbar fix in another Forum, too.
W10 22H2 - SSD-HDD i5 12G -
User avatar
Frank Lion
Posts: 21177
Joined: April 23rd, 2004, 6:59 pm
Location: ... The Exorcist....United Kingdom
Contact:

Re: Turn address bar down arrow (show history) to always on?

Post by Frank Lion »

@ costark,

could you explain how your tab throbber problem in any way relates to the thread topic, which is about .urlbar-history-dropmarkers and forward/back buttons?
"The only thing necessary for the triumph of evil, is for good men to do nothing." - Edmund Burke (attrib.)
.
User avatar
costark
Posts: 548
Joined: July 14th, 2004, 5:03 am

Re: Turn address bar down arrow (show history) to always on?

Post by costark »

Frank Lion wrote:@ costark,

could you explain how your tab throbber problem in any way relates to the thread topic, which is about .urlbar-history-dropmarkers and forward/back buttons?
It doesn't. It was just beginner's luck that I grabbed a part of my - userchrome.css - folder to show what I had added after prior folder expressions for the -- hover-only "history arrow" fix -- and the missing - } - in the Throbber expression that jscher2000 pointed out happened to be a part of that older, unrelated entry. Added the - } - and the history arrow appeared without hovering.
W10 22H2 - SSD-HDD i5 12G -
Post Reply