Skip to content

Commit

Permalink
1.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Aris-t2 committed May 10, 2018
1 parent 98053c0 commit 350a416
Show file tree
Hide file tree
Showing 6 changed files with 90 additions and 69 deletions.
12 changes: 12 additions & 0 deletions classic/css/aboutaddons/addonlists_green_dot_hidden.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/* Firefox Quantum userChrome.css tweaks ************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/


@-moz-document url-prefix(chrome://mozapps/content/extensions/extensions.xul), url-prefix(about:addons) {

.addon .experiment-container {
display: none !important;
}

}
2 changes: 1 addition & 1 deletion classic/css/generalui/findbar_on_top.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

#main-window:not([style*='--lwt-header-image:url("resource:///chrome/browser/content/browser/defaultthemes/compact.header.png");']):-moz-lwtheme :-moz-any(.browserContainer,#viewSource) :-moz-any(findbar,#FindToolbar) .findbar-container {
-moz-appearance: none !important;
background-image: linear-gradient(to bottom, var(--toolbar-bgcolor),transparent) !important;
background-image: linear-gradient(to bottom, var(--toolbar-bgcolor),var(--toolbar-bgcolor)) !important;
-moz-margin-end: -18px !important;
-moz-padding-end: 18px !important;
}
Expand Down
39 changes: 17 additions & 22 deletions classic/css/tabs/tabs_below_navigation_toolbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,10 @@
border-bottom: 1px solid #323234 !important;
}

#main-window[style*='--lwt-accent-color:rgb(0, 0, 0);'][lwtheme="true"]:-moz-lwtheme-brighttext #TabsToolbar:-moz-lwtheme {
border-bottom: 1px solid #323234 !important;
}

#main-window:not([sizemode="fullscreen"])[tabsintitlebar] #TabsToolbar{
-moz-margin-end: 0px !important;
}
Expand Down Expand Up @@ -243,27 +247,6 @@
display: none !important;
}

/* tab text colors */
.tabbrowser-tab {
color: #000000 !important;
}

@media (-moz-os-version: windows-win7) {
@media (-moz-windows-default-theme) {
.tabbrowser-tab:not([selected]) {
color: #ffffff !important;
}
}
}

#TabsToolbar:-moz-lwtheme-darktext .tabbrowser-tab {
color: #000000 !important;
}

#TabsToolbar:-moz-lwtheme-brighttext .tabbrowser-tab {
color: #ffffff !important;
}

@media (-moz-os-version: windows-win10) {
#main-window[tabsintitlebar][sizemode="normal"] #toolbar-menubar[autohide="true"][inactive="true"] {
margin-top: 30px !important;
Expand Down Expand Up @@ -313,9 +296,21 @@

}

/* black tab text color */
/* tab text colors */
#TabsToolbar:not(:-moz-lwtheme) .tabbrowser-tab {
color: var(--classic_squared_tabs_tab_text_color) !important;
text-shadow: 1px 1px 1px var(--classic_squared_tabs_tab_text_shadow) !important;
}

/* fix Windows 7s default tab background (remove dark purple bg color)*/
@media (-moz-os-version: windows-win7) {
@media (-moz-windows-default-theme) {
.tabbrowser-tab:not([selected]):not(:hover):not(:-moz-lwtheme) {
background-color: #e3e4e6 !important;
}
.tabbrowser-tab:not([selected]):hover:not(:-moz-lwtheme) {
background-color: #cccdcf !important;
}

}
}
Loading

0 comments on commit 350a416

Please sign in to comment.