From fa43da15f2cc2c34ffe231d2d566bc691d7ccaf8 Mon Sep 17 00:00:00 2001 From: Horst3180 Date: Wed, 26 Aug 2015 13:08:42 +0200 Subject: make textboxes less rounded --- common/gtk-3.0/3.16/gtk-contained-dark.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/gtk-3.0/3.16/gtk-contained-dark.css') diff --git a/common/gtk-3.0/3.16/gtk-contained-dark.css b/common/gtk-3.0/3.16/gtk-contained-dark.css index 4819a39..96bd5c9 100644 --- a/common/gtk-3.0/3.16/gtk-contained-dark.css +++ b/common/gtk-3.0/3.16/gtk-contained-dark.css @@ -141,14 +141,14 @@ GtkTextView { .entry { border: 1px solid; padding: 5px 8px 6px; - border-radius: 15px; + border-radius: 3px; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); color: #D3DAE3; border-color: #2d3036; background-color: #383c45; background-image: linear-gradient(to bottom, #383c45); } .header-bar .entry { - padding: 6px 11px; } + padding: 6px; } .entry.image { padding-left: 3px; padding-right: 3px; } -- cgit v1.2.3 From be56f427f2a18661f91eba8fd29cba39ae02533d Mon Sep 17 00:00:00 2001 From: Horst3180 Date: Wed, 26 Aug 2015 20:10:02 +0200 Subject: rounded search entries --- common/gtk-3.0/3.16/gtk-contained-dark.css | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'common/gtk-3.0/3.16/gtk-contained-dark.css') diff --git a/common/gtk-3.0/3.16/gtk-contained-dark.css b/common/gtk-3.0/3.16/gtk-contained-dark.css index 96bd5c9..2730afb 100644 --- a/common/gtk-3.0/3.16/gtk-contained-dark.css +++ b/common/gtk-3.0/3.16/gtk-contained-dark.css @@ -257,6 +257,9 @@ GtkTextView { border-color: rgba(0, 0, 0, 0.4); background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } +GtkSearchEntry.entry { + border-radius: 20px; } + /*********** * Buttons * ***********/ @@ -2779,15 +2782,15 @@ GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { border-left-style: none; - border-radius: 0 14.5px 14.5px 0; - outline-radius: 0 12.5px 12.5px 0; } + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { box-shadow: -1px 0 #5294E2; } GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { border-right-style: none; - border-radius: 14.5px 0 0 14.5px; - outline-radius: 12.5px 0 0 12.5px; } + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { box-shadow: 1px 0 #5294E2; } @@ -2999,7 +3002,7 @@ MarlinViewWindow *:selected:focus { outline-color: transparent; } .marlin-pathbar.pathbar { - border-radius: 14.5px; + border-radius: 3px; color: rgba(207, 218, 231, 0.8); border-color: rgba(24, 27, 31, 0.97); background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.87)); -- cgit v1.2.3 From b811483e7f6fb97afa531a873c73a48f48ef8468 Mon Sep 17 00:00:00 2001 From: Horst3180 Date: Thu, 27 Aug 2015 20:54:34 +0200 Subject: better readability on insensitive active buttons --- common/gtk-3.0/3.16/gtk-contained-dark.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'common/gtk-3.0/3.16/gtk-contained-dark.css') diff --git a/common/gtk-3.0/3.16/gtk-contained-dark.css b/common/gtk-3.0/3.16/gtk-contained-dark.css index 2730afb..5198944 100644 --- a/common/gtk-3.0/3.16/gtk-contained-dark.css +++ b/common/gtk-3.0/3.16/gtk-contained-dark.css @@ -319,9 +319,9 @@ GtkSearchEntry.entry { .button:insensitive > GtkLabel { color: inherit; } .button:insensitive:active, .button:insensitive:checked { - color: rgba(255, 255, 255, 0.55); - border-color: rgba(82, 148, 226, 0.55); - background-color: rgba(82, 148, 226, 0.55); + color: rgba(255, 255, 255, 0.8); + border-color: rgba(82, 148, 226, 0.75); + background-color: rgba(82, 148, 226, 0.75); opacity: 0.6; } .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { color: inherit; } @@ -547,9 +547,9 @@ GtkSearchEntry.entry { color: inherit; } .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(255, 255, 255, 0.55); - border-color: rgba(82, 148, 226, 0.55); - background-color: rgba(82, 148, 226, 0.55); + color: rgba(255, 255, 255, 0.8); + border-color: rgba(82, 148, 226, 0.75); + background-color: rgba(82, 148, 226, 0.75); opacity: 0.6; } .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { -- cgit v1.2.3