diff --git a/README.md b/README.md index 4299af91..df1797d7 100644 --- a/README.md +++ b/README.md @@ -165,17 +165,19 @@ Run this command to install `WhiteSur` into `gtk-4.0 configuration folder` ($HOM ./install.sh -l -c Light # install light theme for libadwaita ``` -### Connect WhiteSur theme to Flatpak (Snap not support) +### Fix for Flatpak + +```sh +sudo flatpak override --filesystem=xdg-config/gtk-3.0 && sudo flatpak override --filesystem=xdg-config/gtk-4.0 +``` + +If you use flatpak apps, you can run this to fix theme issue + +### Connect WhiteSur theme to Flatpak (gtk 3.0) (Snap not support) Parameter: `--flatpak` `-F` Example: `./tweaks.sh -F` -Fix for Flatpak gtk-4.0 app: - -```bash -sudo flatpak override --filesystem=xdg-config/gtk-4.0 -``` - ###

Change theme color and accent

diff --git a/src/other/firefox/Monterey/parts/tabsbar-alt.css b/src/other/firefox/Monterey/parts/tabsbar-alt.css index e86c4b16..1674b69c 100644 --- a/src/other/firefox/Monterey/parts/tabsbar-alt.css +++ b/src/other/firefox/Monterey/parts/tabsbar-alt.css @@ -119,7 +119,7 @@ tab[selected]:-moz-window-inactive .tab-label { justify-content: center !important; align-items: center !important; min-width: 100% !important; - padding: 0 10px !important; + padding: 0 8px !important; } .tab-label { diff --git a/src/other/firefox/common/pages/newtab-adaptive.css b/src/other/firefox/common/pages/newtab-adaptive.css index 6392567b..061b9dce 100644 --- a/src/other/firefox/common/pages/newtab-adaptive.css +++ b/src/other/firefox/common/pages/newtab-adaptive.css @@ -1,15 +1,15 @@ /* about:newtab */ .context-menu { - background: var(--gnome-menu-background) !important; border-radius: 12px !important; - box-shadow: var(--gnome-popover-shadow) !important; + box-shadow: var(--gnome-popover-shadow), 0 0 0 1px rgba(0, 0, 0, 0.12) !important; padding: 6px !important; } @media (prefers-color-scheme: dark) { .context-menu { border: 1px solid rgba(255, 255, 255, 0.06) !important; + box-shadow: var(--gnome-popover-shadow), 0 0 0 1px rgba(0, 0, 0, 0.75) !important; } }