firefox: update gnome theme

This commit is contained in:
Leonardo Eugênio 2024-08-20 14:15:58 -03:00
parent 9ffd7e1175
commit b094f8ea74

View file

@ -60,44 +60,37 @@ in
'' ''
else else
'' ''
/* Element | chrome://browser/content/browser.xhtml */ /* Hide tabs and other items */
#navigator-toolbox {
display: grid;
grid-template-columns: 1fr 50px;
overflow: hidden;
}
/* Element | chrome://browser/content/browser.xhtml */
#nav-bar {
flex: 1;
width: 100%;
grid-column: 1 / 3;
grid-row: 1;
z-index: 0;
padding-right: 29px !important;
}
/* Element | chrome://browser/content/browser.xhtml */
.toolbar-items { .toolbar-items {
display: none; display: none;
} }
/* Element | chrome://browser/content/browser.xhtml */ /* Create a horizontal container */
#navigator-toolbox {
#TabsToolbar { display: grid;
max-width: 50px; grid-template-columns: 1fr 50px;
} }
/* Element | chrome://browser/content/browser.xhtml */ /* Make the url bar occupy the entire size of the container */
#nav-bar {
grid-column: 1 / 3;
grid-row: 1;
z-index: 1;
padding-right: 29px !important;
}
/* shrink the tab bar to a small size, since it's only the window close button basically */
#titlebar { #titlebar {
max-width: 50px; max-width: 50px;
grid-area: 1 / 2; grid-area: 1 / 2;
z-index: 10; z-index: 10;
} }
/* Add a nice border to the top of the window */
#nav-bar {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
''; '';
}; };
}; };