summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Steiner <jimmac@gmail.com>2021-07-22 13:44:12 +0200
committerFlorian Müllner <fmuellner@gnome.org>2021-08-18 01:48:31 +0200
commitea115937a9185d23ad235ee33477441e2edc4eee (patch)
treebf23b565fc1f86924b02cd08784827d3c65467b9
parentab1c7fae7e7d597870868bcc33ca0f16a29461e6 (diff)
downloadgnome-shell-sass-ea115937a9185d23ad235ee33477441e2edc4eee.tar.gz
theme: No stroke on entries
- Tobias' mini guadec initiative Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1924>
-rw-r--r--widgets/_entries.scss2
-rw-r--r--widgets/_search-entry.scss7
2 files changed, 3 insertions, 6 deletions
diff --git a/widgets/_entries.scss b/widgets/_entries.scss
index 0a43e86..5a11945 100644
--- a/widgets/_entries.scss
+++ b/widgets/_entries.scss
@@ -3,7 +3,7 @@
StEntry {
border-radius: $base_border_radius;
padding: 8px;
- border-width: 1px;
+ border-width: 0;
color: $fg_color;
@include entry(normal);
//&:hover { @include entry(hover);}
diff --git a/widgets/_search-entry.scss b/widgets/_search-entry.scss
index b184e67..d3584fb 100644
--- a/widgets/_search-entry.scss
+++ b/widgets/_search-entry.scss
@@ -10,19 +10,16 @@ $search_entry_height: 36px;
border-radius: $search_entry_height * 0.5; // half the height
color: transparentize($fg_color,0.3);
background-color: $bg_color;
- border-color: $borders_color;
margin-top: $base_spacing * 2;
margin-bottom: $base_spacing;
-
+ border-width: 2px;
+ border-color: transparent;
&:hover {
background-color: $hover_bg_color;
- border-color: $hover_borders_color;
color: $hover_fg_color;
}
&:focus {
- padding: $base_padding $base_padding+2; // 1px less to account for wider border
- border-width: 2px;
border-style: solid;
border-color: $selected_bg_color;
color: $fg_color;