From 87b2702c5a637920deb900acae56e0503b7e686c Mon Sep 17 00:00:00 2001 From: Vince Date: Wed, 11 Nov 2020 11:49:41 +0800 Subject: [PATCH 1/2] update --- src/main/gtk-3.0/gtk-dark-solid.css | 9 +++++++-- src/main/gtk-3.0/gtk-dark.css | 9 +++++++-- src/main/gtk-3.0/gtk-light-solid.css | 9 +++++++-- src/main/gtk-3.0/gtk-light.css | 9 +++++++-- src/sass/gnome-shell/_common.scss | 2 +- src/sass/gtk/_applications.scss | 9 +++++++-- 6 files changed, 36 insertions(+), 11 deletions(-) diff --git a/src/main/gtk-3.0/gtk-dark-solid.css b/src/main/gtk-3.0/gtk-dark-solid.css index 14f2d98..974b55c 100644 --- a/src/main/gtk-3.0/gtk-dark-solid.css +++ b/src/main/gtk-3.0/gtk-dark-solid.css @@ -6122,8 +6122,9 @@ entry.contacts-postal-entry:focus + entry.contacts-postal-entry { border-top-color: rgba(104, 135, 205, 0.75); } -stack#titlebar_container.titlebar > stack > headerbar { - border: none; +stack#titlebar_container.titlebar > stack > headerbar, +stack#titlebar_container.titlebar > headerbar.titlebar > deck > headerbar { + border-color: #373737; } notebook.main-notebook > header.top { @@ -6138,6 +6139,10 @@ notebook.main-notebook > header.top > tabs > tab:first-child { border-left-width: 0; } +notebook.main-notebook webkitwebview { + border-radius: 0 0 14px 14px; +} + window.background.csd > box.vertical > overlay > stack.background { border-radius: 0 0 14px 14px; } diff --git a/src/main/gtk-3.0/gtk-dark.css b/src/main/gtk-3.0/gtk-dark.css index 6beec6a..191f8b9 100644 --- a/src/main/gtk-3.0/gtk-dark.css +++ b/src/main/gtk-3.0/gtk-dark.css @@ -6118,8 +6118,9 @@ entry.contacts-postal-entry:focus + entry.contacts-postal-entry { border-top-color: rgba(104, 135, 205, 0.75); } -stack#titlebar_container.titlebar > stack > headerbar { - border: none; +stack#titlebar_container.titlebar > stack > headerbar, +stack#titlebar_container.titlebar > headerbar.titlebar > deck > headerbar { + border-color: #373737; } notebook.main-notebook > header.top { @@ -6134,6 +6135,10 @@ notebook.main-notebook > header.top > tabs > tab:first-child { border-left-width: 0; } +notebook.main-notebook webkitwebview { + border-radius: 0 0 14px 14px; +} + window.background.csd > box.vertical > overlay > stack.background { border-radius: 0 0 14px 14px; } diff --git a/src/main/gtk-3.0/gtk-light-solid.css b/src/main/gtk-3.0/gtk-light-solid.css index a0f6955..4fed019 100644 --- a/src/main/gtk-3.0/gtk-light-solid.css +++ b/src/main/gtk-3.0/gtk-light-solid.css @@ -6144,8 +6144,9 @@ entry.contacts-postal-entry:focus + entry.contacts-postal-entry { border-top-color: rgba(103, 164, 233, 0.75); } -stack#titlebar_container.titlebar > stack > headerbar { - border: none; +stack#titlebar_container.titlebar > stack > headerbar, +stack#titlebar_container.titlebar > headerbar.titlebar > deck > headerbar { + border-color: #ffffff; } notebook.main-notebook > header.top { @@ -6160,6 +6161,10 @@ notebook.main-notebook > header.top > tabs > tab:first-child { border-left-width: 0; } +notebook.main-notebook webkitwebview { + border-radius: 0 0 14px 14px; +} + window.background.csd > box.vertical > overlay > stack.background { border-radius: 0 0 14px 14px; } diff --git a/src/main/gtk-3.0/gtk-light.css b/src/main/gtk-3.0/gtk-light.css index d0d7d55..ad3a893 100644 --- a/src/main/gtk-3.0/gtk-light.css +++ b/src/main/gtk-3.0/gtk-light.css @@ -6140,8 +6140,9 @@ entry.contacts-postal-entry:focus + entry.contacts-postal-entry { border-top-color: rgba(103, 164, 233, 0.75); } -stack#titlebar_container.titlebar > stack > headerbar { - border: none; +stack#titlebar_container.titlebar > stack > headerbar, +stack#titlebar_container.titlebar > headerbar.titlebar > deck > headerbar { + border-color: #ffffff; } notebook.main-notebook > header.top { @@ -6156,6 +6157,10 @@ notebook.main-notebook > header.top > tabs > tab:first-child { border-left-width: 0; } +notebook.main-notebook webkitwebview { + border-radius: 0 0 14px 14px; +} + window.background.csd > box.vertical > overlay > stack.background { border-radius: 0 0 14px 14px; } diff --git a/src/sass/gnome-shell/_common.scss b/src/sass/gnome-shell/_common.scss index db2fb3a..a0fa2cd 100644 --- a/src/sass/gnome-shell/_common.scss +++ b/src/sass/gnome-shell/_common.scss @@ -1314,7 +1314,7 @@ $popop_menuitem_radius: $wm_radius - 4px; text-shadow: none; color: $alt_fg_color; - &:hover,&:focus { color: $fg_color; background-color: $divider_color; } + &:hover, &:focus { color: $fg_color; background-color: $divider_color; } &:active { color: $fg_color; background-color: $track_color; diff --git a/src/sass/gtk/_applications.scss b/src/sass/gtk/_applications.scss index f9c7868..99245f3 100644 --- a/src/sass/gtk/_applications.scss +++ b/src/sass/gtk/_applications.scss @@ -1650,8 +1650,9 @@ entry.contacts-postal-entry:focus + entry.contacts-postal-entry { border-top-col // Gnome Web // stack#titlebar_container.titlebar { - > stack > headerbar { - border: none; + > stack > headerbar, + > headerbar.titlebar > deck > headerbar { // Gnome 3.38 + border-color: $header_bg; // entry.suggestion.url_entry {} } @@ -1671,6 +1672,10 @@ notebook.main-notebook { } } } + + webkitwebview { + border-radius: 0 0 $wm_radius $wm_radius; + } } // From da0789dd4b7d66268b6f65ebd5ba86a7d580571f Mon Sep 17 00:00:00 2001 From: Luca Saladino Date: Thu, 12 Nov 2020 12:25:51 +0100 Subject: [PATCH 2/2] Fixed Issues #62 #63 #55 --- README.md | 3 ++- src/main/gtk-3.0/gtk-dark.css | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 86ee1cd..ae8a66f 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ ArchLinux: - sassc. - optipng. - inkscape. +- libglib2.0-dev-bin `ubuntu 20.04` - libglib2.0-dev. `ubuntu 18.04` `debian 10.03` `linux mint 19` - libxml2-utils. `ubuntu 18.04` `debian 10.03` `linux mint 19` - glib2-devel. `Fedora` `Redhat` @@ -38,7 +39,7 @@ Fedora/RedHat distros: Ubuntu/Mint/Debian distros: - sudo apt install sassc optipng inkscape + sudo apt install sassc optipng inkscape libglib2.0-dev-bin Debian 10: diff --git a/src/main/gtk-3.0/gtk-dark.css b/src/main/gtk-3.0/gtk-dark.css index 28e7dca..fbfe814 100644 --- a/src/main/gtk-3.0/gtk-dark.css +++ b/src/main/gtk-3.0/gtk-dark.css @@ -4841,7 +4841,7 @@ filechooser paned > separator:hover, } .nautilus-window placessidebar.sidebar row.sidebar-row .sidebar-icon { - color: #0860f2; + color: #ffffff; } .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup, .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup label, .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup image, .nautilus-window placessidebar.sidebar row.sidebar-row:disabled, .nautilus-window placessidebar.sidebar label:disabled selection.sidebar-row, label:disabled .nautilus-window placessidebar.sidebar selection.sidebar-row, .nautilus-window placessidebar.sidebar row.sidebar-row:disabled label, .nautilus-window placessidebar.sidebar label:disabled selection.sidebar-row label, label:disabled .nautilus-window placessidebar.sidebar selection.sidebar-row label, .nautilus-window placessidebar.sidebar row.sidebar-row:disabled image, .nautilus-window placessidebar.sidebar label:disabled selection.sidebar-row image, label:disabled .nautilus-window placessidebar.sidebar selection.sidebar-row image { @@ -4885,7 +4885,7 @@ filechooser paned > separator:hover, } .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row { - color: #0860f2; + color: #ffffff; } .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon {