gnome-integration-team / firefox-gnome

GNOME 3 theme for Firefox (previously known as Adwaita)
Mozilla Public License 2.0
254 stars 139 forks source link

Help with stylish #326

Closed JohannesKahl closed 9 years ago

JohannesKahl commented 9 years ago

Hi,

First of all, thank you for this great theme. I'm actually using it on my Uber Weird kde desktop, and i find it breath taking! I'd like to mod it a little though, but i need to ask your help with:

So far i'm using stylish for the purpose, but in the future i might mod the source directly.

Thank you in advance, and again thank you for all the great work on FF !

P.s. As it looks so far

seleznev commented 9 years ago

Remove the blue line at the bottom of the active tab.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

@-moz-document url("chrome://browser/content/browser.xul") {

  .tab-background-middle {
    -moz-border-bottom-colors: transparent !important;
  }

  .tab-background-start,
  .tab-background-end {
    background-image: none !important;
  }

}

screenshot from 2015-05-03 11-35-28

(If you need 1px bottom border, just set border width to 1px and set right color)


Code for tabs height

Be careful with this part. Not sure that it's all.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

@-moz-document url("chrome://browser/content/browser.xul") {

  #tabbrowser-tabs,
  .tabbrowser-tab > .tab-stack {
    min-height: 0 !important;
  }

}

If you can link me the CSS files for tabs close button and deco buttons (for htitle extension - by the way: is the placement of buttons settled from this theme or directly from htitle?)

is the placement of buttons settled from this theme

This.

tabs close button

deco buttons

If you need any additional information, please tell me.

JohannesKahl commented 9 years ago

Great ! Thank you very much for the complete answer! Starting to work on it immediately, let's see what i can do :)

I'll probably post another comment in case i need further instructions (sorry, i'm not much confident with theming Firefox UI. Hope there will be no need for other questions)