Initial rounded titlebuttons support (GTK-3.24.11), #77

implemented as extra feature
This commit is contained in:
Rafael Mardojai CM 2019-09-09 18:25:07 -05:00
parent e0196b2391
commit b5607b9ec7
4 changed files with 15 additions and 0 deletions

View File

@ -129,6 +129,10 @@ Alternatively you can run installation script with `-g` flag to auto install GNO
Limit the URL bar's autocompletion popup's width to the URL bar's width. Limit the URL bar's autocompletion popup's width to the URL bar's width.
- **rounded-title-buttons.css** *GNOMISH*
Rounded title buttons (headerbar window controls).
- **active-tab-contrast.css** - **active-tab-contrast.css**
Active tab better contrast. Active tab better contrast.

View File

@ -50,6 +50,7 @@ if [ "$GNOMISHEXTRAS" = true ] ; then
[[ -s customChrome.css ]] || echo >> firefox-gnome-theme/customChrome.css [[ -s customChrome.css ]] || echo >> firefox-gnome-theme/customChrome.css
sed -i '1s/^/@import "theme\/hide-single-tab.css";\n/' firefox-gnome-theme/customChrome.css sed -i '1s/^/@import "theme\/hide-single-tab.css";\n/' firefox-gnome-theme/customChrome.css
sed -i '2s/^/@import "theme\/matching-autocomplete-width.css";\n/' firefox-gnome-theme/customChrome.css sed -i '2s/^/@import "theme\/matching-autocomplete-width.css";\n/' firefox-gnome-theme/customChrome.css
sed -i '3s/^/@import "theme\/rounded-title-buttons.css";\n/' firefox-gnome-theme/customChrome.css
fi fi
# Symlink user.js to firefox-gnome-theme one. # Symlink user.js to firefox-gnome-theme one.

View File

@ -0,0 +1,7 @@
/* Rounded title buttons (headerbar window controls) */
@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
:root[tabsintitlebar] #titlebar .titlebar-button {
border-radius: 100% !important;
}

View File

@ -16,6 +16,9 @@
/* Limit the URL bar's autocompletion popup's width to the URL bar's width (GNOMISH) */ /* Limit the URL bar's autocompletion popup's width to the URL bar's width (GNOMISH) */
/*@import "theme/matching-autocomplete-width.css"; /**/ /*@import "theme/matching-autocomplete-width.css"; /**/
/* Rounded title buttons (headerbar window controls) (GNOMISH) */
/*@import "theme/rounded-title-buttons.css"; /**/
/* Active tab high contrast */ /* Active tab high contrast */
/*@import "theme/active-tab-contrast.css"; /**/ /*@import "theme/active-tab-contrast.css"; /**/