summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Steiner <jimmac@gmail.com>2020-07-20 12:36:39 +0200
committerJakub Steiner <jimmac@gmail.com>2020-07-20 12:36:39 +0200
commite0e6e4be14bd98cab828bef6e77338b4850b06b0 (patch)
treee67c8e1e0db329bda2741bc5082ed1f925c3cd34
parent86c7fceb09a37b962431b24c9883dd9cc8000088 (diff)
downloadgtk+-wip/jimmac/lists-that-are-grids.tar.gz
- this would be nice to have a semantic name for. setting-grid? See https://gitlab.gnome.org/GNOME/gtk/-/issues/2929
-rw-r--r--gtk/theme/Adwaita/_common.scss18
1 files changed, 18 insertions, 0 deletions
diff --git a/gtk/theme/Adwaita/_common.scss b/gtk/theme/Adwaita/_common.scss
index 104f09d707..01b5058047 100644
--- a/gtk/theme/Adwaita/_common.scss
+++ b/gtk/theme/Adwaita/_common.scss
@@ -3065,6 +3065,24 @@ row {
}
}
+ /********************************************
+ * Treeview like editable lists with columns *
+ ********************************************/
+
+ listview row:not(:selected) cell editablelabel:not(.editing):focus-within {
+ outline: 2px solid $focus_border_color;
+ }
+
+ listview row:not(:selected) cell editablelabel.editing:focus-within {
+ outline: 2px solid $selected_bg_color;
+ }
+
+ listview row:not(:selected) cell editablelabel.editing text selection {
+ color: $selected_fg_color;
+ background-color: $selected_bg_color;
+ }
+
+
/*********************
* App Notifications *