Bookmark items

User Help for Seamonkey and Mozilla Suite
Post Reply
User avatar
RobertJ
Moderator
Posts: 10880
Joined: October 15th, 2003, 7:40 pm
Location: Chicago IL/Oconomowoc WI

Bookmark items

Post by RobertJ »

.
Been trying to figure out how to add some spacing to the items on the bookmarks toolbar. Have tried numerous bits of code into userChrome.css and all do nothing. This is the latest

Code: Select all

#PlacesToolbarItems  {
margin-left: 8px !important;
}
Does nothing ](*,)

Any suggestions?

.
FF 92.0 - TB 78.13 - Mac OSX 10.13.6
barbaz
Posts: 1504
Joined: October 1st, 2014, 3:25 pm

Re: Bookmark items

Post by barbaz »

This seems to work -

Code: Select all

#personal-bookmarks .bookmark-item {
  margin-left: 8px;
}
User avatar
RobertJ
Moderator
Posts: 10880
Joined: October 15th, 2003, 7:40 pm
Location: Chicago IL/Oconomowoc WI

Re: Bookmark items

Post by RobertJ »

.
Thanks but did nothing.

.
FF 92.0 - TB 78.13 - Mac OSX 10.13.6
barbaz
Posts: 1504
Joined: October 1st, 2014, 3:25 pm

Re: Bookmark items

Post by barbaz »

Do other changes to userChrome.css have any effect? Like, does this turn your toolbars bright pink? -

Code: Select all

toolbar, statusbar {
  -moz-appearance: none !important;
  background-color: #f0a !important;
}
If so, to be clear, you're trying to add space between each item on the bookmarks toolbar, right?
And are you using a non-default theme?
User avatar
RobertJ
Moderator
Posts: 10880
Joined: October 15th, 2003, 7:40 pm
Location: Chicago IL/Oconomowoc WI

Re: Bookmark items

Post by RobertJ »

barbaz wrote:Do other changes to userChrome.css have any effect?
Yes including this which you wrote

Code: Select all

  /* BARBAZ'S USER STYLE TO MAKE SEAMONKEY ACTIVE TAB ROUND-CORNERED */
 
.tabbrowser-tab[selected="true"],
.tabbrowser-tab[selected="true"] *

{
border-top-left-radius: 6.5px !important;
border-top-right-radius: 6.5px !important;
}
barbaz wrote:If so, to be clear, you're trying to add space between each item on the bookmarks toolbar, right?
And are you using a non-default theme?
Correct and using the default theme.

Also I was able to turn the bookmark toolbar blue (don't remember the id).

.
FF 92.0 - TB 78.13 - Mac OSX 10.13.6
barbaz
Posts: 1504
Joined: October 1st, 2014, 3:25 pm

Re: Bookmark items

Post by barbaz »

Sorry, my bad. That code I posted above needs a !important in a new profile.
User avatar
RobertJ
Moderator
Posts: 10880
Joined: October 15th, 2003, 7:40 pm
Location: Chicago IL/Oconomowoc WI

Re: Bookmark items

Post by RobertJ »

barbaz wrote:Sorry, my bad. That code I posted above needs a !important in a new profile.
We both screwed up; I have been doing this a long time and SHOULD have noticed that.

.
FF 92.0 - TB 78.13 - Mac OSX 10.13.6
barbaz
Posts: 1504
Joined: October 1st, 2014, 3:25 pm

Re: Bookmark items

Post by barbaz »

Oddly, it works without !important in my main profile. :-k I would guess that might be because my bookmarks are on a custom toolbar, and my "Bookmarks Toolbar" is used for other things?

Anyway, glad it's now working for you. 8-)
User avatar
RobertJ
Moderator
Posts: 10880
Joined: October 15th, 2003, 7:40 pm
Location: Chicago IL/Oconomowoc WI

Re: Bookmark items

Post by RobertJ »

barbaz, I used your code below and it works fine with one issue. The top edges of the favicon also get rounded like this

Image

Is there any way to avoid this?

Code: Select all

  /* BARBAZ'S USER STYLE TO MAKE SEAMONKEY ACTIVE TAB ROUND-CORNERED */
 
.tabbrowser-tab[selected="true"],
.tabbrowser-tab[selected="true"] *

{
border-top-left-radius: 6.5px !important;
border-top-right-radius: 6.5px !important;
}


.
FF 92.0 - TB 78.13 - Mac OSX 10.13.6
barbaz
Posts: 1504
Joined: October 1st, 2014, 3:25 pm

Re: Bookmark items

Post by barbaz »

I'd have to have Mac OS in front of me to answer that for sure. I hit the same thing when I was first playing with restyling the tabs.

But I know that I had to change that code when I switched to Linux. And I think I may have done a SeaMonkey upgrade at the same time.

See if this works -

Code: Select all

  /* BARBAZ'S USER STYLE TO MAKE SEAMONKEY ACTIVE TAB ROUND-CORNERED */

.tabbrowser-tab

{
-moz-appearance: none !important;
}
 
.tabbrowser-tab[selected="true"]

{
border-top-left-radius: 6.5px !important;
border-top-right-radius: 6.5px !important;
}
User avatar
Grumpus
Posts: 13238
Joined: October 19th, 2007, 4:23 am
Location: ... Da' Swamp

Re: Bookmark items

Post by Grumpus »

You two need to remember it's not a mistake, it's an option.
Doesn't matter what you say, it's wrong for a toaster to walk around the house and talk to you
User avatar
RobertJ
Moderator
Posts: 10880
Joined: October 15th, 2003, 7:40 pm
Location: Chicago IL/Oconomowoc WI

Re: Bookmark items

Post by RobertJ »

.
Nope.

Will keep trying.

.
FF 92.0 - TB 78.13 - Mac OSX 10.13.6
User avatar
RobertJ
Moderator
Posts: 10880
Joined: October 15th, 2003, 7:40 pm
Location: Chicago IL/Oconomowoc WI

Re: Bookmark items

Post by RobertJ »

.
After screwing around with looking for a way to negate images in the tab from taking on the border-top-radius property I have given up.

In the meantime decided that the square tabs are "just fine".

If Frank Lion reads this, thanks for offering to look into the issue but you can save your time. Square tabs are beautiful. :wink:

.
FF 92.0 - TB 78.13 - Mac OSX 10.13.6
User avatar
Frank Lion
Posts: 21173
Joined: April 23rd, 2004, 6:59 pm
Location: ... The Exorcist....United Kingdom
Contact:

Re: Bookmark items

Post by Frank Lion »

barbaz wrote:See if this works -...
Try using tab.tabbrowser-tab there.

Macs tend to (in random areas) ripple code downwards (think of it like how opacity hits the 'children' of the parent ID) So to get round that you hit the parent and then undo it further down the stack. In this case, by using tab.tabbrowser-tab[selected=true] .tab-middle.box-inherit and unset.

This stuff can get a bit technical, so let me know if you want more details on this type of stuff and I'll cover it in a post on my .css thread.
"The only thing necessary for the triumph of evil, is for good men to do nothing." - Edmund Burke (attrib.)
.
Post Reply