Skip to content

Instantly share code, notes, and snippets.

@dumindu
Last active December 15, 2017 13:18
Show Gist options
  • Save dumindu/a44bf2211fe71b799f6e98b9cb1ebf76 to your computer and use it in GitHub Desktop.
Save dumindu/a44bf2211fe71b799f6e98b9cb1ebf76 to your computer and use it in GitHub Desktop.
/* userChrome.css */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
:root:-moz-lwtheme-brighttext {
--chrome-background-color: #555555 !important;
--chrome-color: #999999 !important;
--chrome-secondary-background-color: #444444 !important;
--toolbox-border-bottom-color: #424242 !important;
--url-and-searchbar-border-color: #424242 !important;
--focus-ring-box-shadow: #333333 !important;
}
#urlbar[focused="true"], .searchbar-textbox[focused="true"] {
border-color: #525252 !important;
}
.browserContainer {
background-color: #555555 !important;
}
:root:-moz-lwtheme {
--tab-line-color: none !important;
}
@dumindu
Copy link
Author

dumindu commented Nov 26, 2017

screen shot 2017-11-26 at 3 55 24 pm

screen shot 2017-11-26 at 3 59 14 pm

/* userContent.css */
@-moz-document url(about:newtab) {
    .activity-stream {
        background-color: #444444 !important;
    }
    .top-sites-list .top-site-outer > a {
        color: #737373 !important;
    }
    .top-sites-list .top-site-outer .title.pinned span {
        font-size: smaller !important;
    }
    .tile {
      filter: grayscale(42%) !important;
      opacity: .9 !important;
    }
}
/* userChrome.css : to make normal density theme bit compact */
:root:not([uidensity=compact]) #back-button {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
:root:not([uidensity=compact]) #back-button > .toolbarbutton-icon {
  background-color: unset !important;
  border: none !important;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment