Remove bottom border from tabsbar

This commit is contained in:
Rafael Mardojai CM 2019-06-02 13:41:35 -05:00
parent aa5d8e3184
commit 8f198c0823
2 changed files with 9 additions and 2 deletions

View File

@ -2,6 +2,13 @@
@namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; @namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
#TabsToolbar {
background-color: var(--gnome-toolbar-bgcolor) !important;
}
#TabsToolbar:-moz-window-inactive {
background-color: var(--gnome-inactive-toolbar-bgcolor) !important;
}
/* Tabs bar height */ /* Tabs bar height */
#tabbrowser-tabs, #tabbrowser-tabs,
#tabbrowser-tabs arrowscrollbox { #tabbrowser-tabs arrowscrollbox {

View File

@ -8,11 +8,11 @@
@namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; @namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
/* Toolbox colors */ /* Toolbox colors */
#PersonalToolbar, #toolbar-menubar, #TabsToolbar { #PersonalToolbar, #toolbar-menubar {
background-color: var(--gnome-toolbar-bgcolor) !important; background-color: var(--gnome-toolbar-bgcolor) !important;
border-bottom: var(--gnome-toolbar-border-bottom) !important; border-bottom: var(--gnome-toolbar-border-bottom) !important;
} }
#PersonalToolbar:-moz-window-inactive, #toolbar-menubar:-moz-window-inactive, #TabsToolbar:-moz-window-inactive { #PersonalToolbar:-moz-window-inactive, #toolbar-menubar:-moz-window-inactive {
background-color: var(--gnome-inactive-toolbar-bgcolor) !important; background-color: var(--gnome-inactive-toolbar-bgcolor) !important;
border-bottom: var(--gnome-inactive-toolbar-border-bottom) !important; border-bottom: var(--gnome-inactive-toolbar-border-bottom) !important;
} }