2.46 com-beta gtk3 build tab theme fix

Discussion about Seamonkey builds
Post Reply
zinist
Posts: 11
Joined: September 12th, 2016, 2:47 pm

2.46 com-beta gtk3 build tab theme fix

Post by zinist »

put it in your userChrome.css , ideas and refinements welcome theme properties are a maze

Image

.tabbrowser-tab {
-moz-appearance: none !important;
border-radius: 10px 10px 0 0 !important;
height: 25px;
color: grey !important;
border-width: 0px 0px 0px 0px !important;
padding: 2px !important;
margin: 1px 1px 1px 1px !important;
}

.tabbrowser-tab[selected="true"] {
-moz-appearance: none !important;
border-radius: 10px 10px 0 0 !important;
height: 25px;
color: black !important;
border-width: 1px 1px 1px 1px !important;
background-color: red;
padding: 1px 1px 1px 5px !important;
// font-weight: bold !important;
margin: 1px 1px 0px 1px !important;
}
barbaz
Posts: 1504
Joined: October 1st, 2014, 3:25 pm

Re: 2.46 com-beta gtk3 build tab theme fix

Post by barbaz »

What Linux/GTK theme are you using for the screenshot?
zinist
Posts: 11
Joined: September 12th, 2016, 2:47 pm

Re: 2.46 com-beta gtk3 build tab theme fix

Post by zinist »

gtk-theme-name = Zukitwo

let me show it for
gtk-theme-name = Adwaita too (this is the (horible) stock gtk3 theme)

without user chrome
Image

with userchrome
Image



grippies are also removed

window .toolbar-primary-grippy,
window .toolbar-grippy {
display: none!important;
}
/* remove border beside grippies */
.toolbar-holder {
border: 0px!important;
}

#folderpane-splitter,
#threadpane-splitter,
#attachment-splitter {
width: 0px!important;
height: 0px!important;
border: 0px!important;
padding: 0px!important;
margin: 0px!important;
}
Anonymosity
Posts: 8779
Joined: May 7th, 2007, 12:07 pm

Re: 2.46 com-beta gtk3 build tab theme fix

Post by Anonymosity »

Why make unselected tabs look as though they are greyed out? If you put grey text on a slightly lighter grey background, you make the text harder to read. Changing the background colour of the selected tab makes it stand out, but if the text colours are chosen well, everything is still easy to read and the tabs do not look greyed out.
Post Reply