The first official 20210409 builds are out

Discussion about official Mozilla Firefox builds
User avatar
Omega X
Posts: 8225
Joined: October 18th, 2007, 2:38 pm
Location: A Parallel Dimension...

Re: The first official 20210409 builds are not yet out

Post by Omega X »

hwti wrote: I hope this won't be removed.
This is UX Team, you're not getting options. That will be removed the moment Proton is finished.
User avatar
GHM113
Posts: 707
Joined: December 16th, 2015, 3:59 am
Location: Moscow, Russia

Re: The first official 20210409 builds are not yet out

Post by GHM113 »

dsmith wrote:bookmark lists can get long, and the extra spacing makes them harder to use. I have multiple folders that now require scrolling that used to easily fit on screen.
If you are talking about bookmark lists from the bookmarks toolbar then you can revert things to where they were with this userchrome code:

Code: Select all

#personal-bookmarks .bookmark-item {
  padding: 2px !important;
}
I don't know if this code is the best possible but it works.
Sorry for my poor English.
ashleylai87
Posts: 218
Joined: December 13th, 2013, 7:40 pm

Re: The first official 20210409 builds are not yet out

Post by ashleylai87 »

dickvl wrote:I tweaked the tab bar a bit.
Luckily, my code for the tabs on bottom still works, I only added some padding-bottom to move up the text and increased the height from 25px to 30px in the CSS code I use for the tabs on bottom.

Code: Select all

/* TAB BAR - proton */
@media (-moz-proton) {
 
 *|*:root {
  --tab-min-height: 30px !important;
}
 
 #tabbrowser-tabs[haspinnedtabs]:not([positionpinnedtabs]) > #tabbrowser-arrowscrollbox > .tabbrowser-tab[first-visible-unpinned-tab] {
  margin-inline-start: 3px !important;
 }
  
 .tabbrowser-tab {
   padding-inline: 0px !important;
 }
 
 .tabbrowser-tab .tab-content {
   padding-bottom: 7px !important;
 }

 .tab-background {
   border: 1px dotted gray !important;
   border-top-color: transparent !important;
 }

} /* [-moz-proton] */
Someone posted this CSS at Reddit. It is not perfect, but it is a good start.
https://gist.github.com/intrnl/ef2066b9 ... 5a6011f8c0

Geez, those new photon spacing are too large.
Josa
Posts: 7404
Joined: July 28th, 2009, 4:52 pm

Re: The first official 20210409 builds are out

Post by Josa »

Locked