SeaFox - Development

Talk about add-ons and extension development.
Post Reply
User avatar
patrickjdempsey
Posts: 23686
Joined: October 23rd, 2008, 11:43 am
Location: Asheville NC
Contact:

Re: SeaFox - Development

Post by patrickjdempsey »

Sure:

Code: Select all

findbar { 
  -moz-box-ordinal-group: 0!important;
}
Tip of the day: If it has "toolbar" in the name, it's crap.
What my avatar is about: https://addons.mozilla.org/en-US/seamonkey/addon/sea-fox/
User avatar
Frank Lion
Posts: 21177
Joined: April 23rd, 2004, 6:59 pm
Location: ... The Exorcist....United Kingdom
Contact:

Re: SeaFox - Development

Post by Frank Lion »

patrickjdempsey wrote:Unfortunately it appears to be very busted with Frank's themes. :(

If you send me the .xpi I'll see if I can support it at my end. I'm doing a general update on those 2 SM themes in a few weeks anyway.
"The only thing necessary for the triumph of evil, is for good men to do nothing." - Edmund Burke (attrib.)
.
User avatar
patrickjdempsey
Posts: 23686
Joined: October 23rd, 2008, 11:43 am
Location: Asheville NC
Contact:

Re: SeaFox - Development

Post by patrickjdempsey »

I uploaded it last night and now it's Public. Ha! I'm pretty sure the bustage is because of the specificity of your selectors. The unified #back-button is not a menu type toolbarbutton, so your selector chain breaks. But this change will not cause breakage for existing users as long as they don't press that "Firefox 3 Toolbar Layout" button in Customize. The offending buttons will be safely tucked away in the Customization palette.
Tip of the day: If it has "toolbar" in the name, it's crap.
What my avatar is about: https://addons.mozilla.org/en-US/seamonkey/addon/sea-fox/
User avatar
patrickjdempsey
Posts: 23686
Joined: October 23rd, 2008, 11:43 am
Location: Asheville NC
Contact:

Re: SeaFox - Development

Post by patrickjdempsey »

L.A.R. and others, I've split extensions.seafox.components.disable and moved the menus part under extensions.seafox.menus.rearrange. Both options can be toggled on the fly from the options panel in the Addons Manager. I believe all of the other settings that SeaFox changes have listings in the main Preferences interface.
Tip of the day: If it has "toolbar" in the name, it's crap.
What my avatar is about: https://addons.mozilla.org/en-US/seamonkey/addon/sea-fox/
User avatar
L.A.R. Grizzly
Posts: 5396
Joined: March 15th, 2005, 5:32 pm
Location: Upstate Ohio, USA
Contact:

Re: SeaFox - Development

Post by L.A.R. Grizzly »

patrickjdempsey wrote:L.A.R. and others, I've split extensions.seafox.components.disable and moved the menus part under extensions.seafox.menus.rearrange. Both options can be toggled on the fly from the options panel in the Addons Manager. I believe all of the other settings that SeaFox changes have listings in the main Preferences interface.


Thanks for the Find Bar code, works just fine. It's nice to see the Switch Profile returned to the Tools Menu. Nice update! Kudos!
Win7 Pro SP1 64 Bit
Comodo Internet Security
Pale Moon 33.0.2, Epyrus Mail 2.1.2, Firefox 115.9.1esr, Thunderbird 115.9.0, and SeaMonkey 2.53.18.2
User avatar
patrickjdempsey
Posts: 23686
Joined: October 23rd, 2008, 11:43 am
Location: Asheville NC
Contact:

Re: SeaFox - Development

Post by patrickjdempsey »

Cheers! Hopefully there's not too many bugs in this one!
Tip of the day: If it has "toolbar" in the name, it's crap.
What my avatar is about: https://addons.mozilla.org/en-US/seamonkey/addon/sea-fox/
i_made_an_account
Posts: 7
Joined: January 12th, 2015, 4:26 pm

Re: SeaFox - Development

Post by i_made_an_account »

Is there any chance of a SeaFox Lite, which just moves the New Tab button and puts the security information in the Urlbar?
User avatar
patrickjdempsey
Posts: 23686
Joined: October 23rd, 2008, 11:43 am
Location: Asheville NC
Contact:

Re: SeaFox - Development

Post by patrickjdempsey »

You can move the native new tab button with this userChrome.css hack:
.tabs-stack vbox hbox stack { -moz-box-ordinal-group:10!important; }

SeaTab-X-2 adds tab closer buttons:
https://addons.mozilla.org/en-US/seamon ... eatab-x-2/

I don't know of any extensions off-hand that add security features to the urlbar.... you can find some of that in the status bar at the far right.
Tip of the day: If it has "toolbar" in the name, it's crap.
What my avatar is about: https://addons.mozilla.org/en-US/seamonkey/addon/sea-fox/
User avatar
L.A.R. Grizzly
Posts: 5396
Joined: March 15th, 2005, 5:32 pm
Location: Upstate Ohio, USA
Contact:

Re: SeaFox - Development

Post by L.A.R. Grizzly »

patrickjdempsey wrote:I don't know of any extensions off-hand that add security features to the urlbar.... you can find some of that in the status bar at the far right.


This UserStyle works in SM as well as FX:

Yellow https Location Bar: https://userstyles.org/styles/8248/yell ... cation-bar
Win7 Pro SP1 64 Bit
Comodo Internet Security
Pale Moon 33.0.2, Epyrus Mail 2.1.2, Firefox 115.9.1esr, Thunderbird 115.9.0, and SeaMonkey 2.53.18.2
User avatar
patrickjdempsey
Posts: 23686
Joined: October 23rd, 2008, 11:43 am
Location: Asheville NC
Contact:

Re: SeaFox - Development

Post by patrickjdempsey »

That's in SeaMonkey by default, no need for a userStyle... although some Themes do not support it:
browser.urlbar.highlight.secure;true
Tip of the day: If it has "toolbar" in the name, it's crap.
What my avatar is about: https://addons.mozilla.org/en-US/seamonkey/addon/sea-fox/
i_made_an_account
Posts: 7
Joined: January 12th, 2015, 4:26 pm

Re: SeaFox - Development

Post by i_made_an_account »

patrickjdempsey wrote:You can move the native new tab button with this userChrome.css hack...

All that does is move it to the far right of the tab bar. It doesn't keep it adjacent to the last tab. Don't worry I can do it myself in XUL, I just thought it might be a 5 min task for you since you know your code already.
User avatar
patrickjdempsey
Posts: 23686
Joined: October 23rd, 2008, 11:43 am
Location: Asheville NC
Contact:

Re: SeaFox - Development

Post by patrickjdempsey »

i_made_an_account wrote:
patrickjdempsey wrote:You can move the native new tab button with this userChrome.css hack...

All that does is move it to the far right of the tab bar. It doesn't keep it adjacent to the last tab. Don't worry I can do it myself in XUL, I just thought it might be a 5 min task for you since you know your code already.


It's also a rather different request from the one you originally made. And no, I won't worry. If it's one thing I never worry over it's people who think dismissive passive aggressive language is the way to get what they want. Good luck.
Tip of the day: If it has "toolbar" in the name, it's crap.
What my avatar is about: https://addons.mozilla.org/en-US/seamonkey/addon/sea-fox/
i_made_an_account
Posts: 7
Joined: January 12th, 2015, 4:26 pm

Re: SeaFox - Development

Post by i_made_an_account »

i_made_an_account wrote:
patrickjdempsey wrote:
i_made_an_account wrote:Is there any chance of a SeaFox Lite, which just moves the New Tab button and puts the security information in the Urlbar?
You can move the native new tab button with this userChrome.css hack...
All that does is move it to the far right of the tab bar. It doesn't keep it adjacent to the last tab. Don't worry I can do it myself in XUL, I just thought it might be a 5 min task for you since you know your code already.

patrickjdempsey wrote:It's also a rather different request from the one you originally made. And no, I won't worry. If it's one thing I never worry over it's people who think dismissive passive aggressive language is the way to get what they want. Good luck.

It's exactly the same. I asked for two features from SeaFox - the one that moves the New Tab button and the one that puts the security info in the Urlbar. How could you interpret that as anything else?

I notice you commented on another thread I made in a similar fashion, here: viewtopic.php?f=4&t=2905313
You've misunderstood everything, and projected your anger onto me. No surprise, since you take a retraction as aggression. I suspect you do this all the time.

Please do not comment on my posts in future. I request you ignore my account to remind you.
User avatar
DanRaisch
Moderator
Posts: 127222
Joined: September 23rd, 2004, 8:57 pm
Location: Somewhere on the right coast

Re: SeaFox - Development

Post by DanRaisch »

i_made_an_account, may I suggest that you lose the attitude. You came here asking for guidance/support. Getting snarky with those trying to provide it is no way to encourage anyone to continue to work with you on something.
User avatar
patrickjdempsey
Posts: 23686
Joined: October 23rd, 2008, 11:43 am
Location: Asheville NC
Contact:

Re: SeaFox - Development

Post by patrickjdempsey »

Moving on.

Live birth of a baby thresher shark recorded for the first time!
http://www.bbc.com/news/science-environment-30747971
Tip of the day: If it has "toolbar" in the name, it's crap.
What my avatar is about: https://addons.mozilla.org/en-US/seamonkey/addon/sea-fox/
Post Reply