From f5cfaab7cc1a21618782ccc125da933ca8792a92 Mon Sep 17 00:00:00 2001 From: imarkoff Date: Thu, 16 Feb 2023 20:59:32 +0200 Subject: [PATCH] Looking Glass support (only dark mode) --- gnome-shell/gnome-shell.css | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnome-shell/gnome-shell.css b/gnome-shell/gnome-shell.css index f3619f0..fdf7753 100644 --- a/gnome-shell/gnome-shell.css +++ b/gnome-shell/gnome-shell.css @@ -1139,3 +1139,36 @@ StEntry:focus { .window-close:hover, .screenshot-ui-close-button:hover { background-color: CLOSE-BUTTON_HOVER; } + + +/* Looking Glass | R.I.P. custom colors & light mode */ +#LookingGlassDialog { + border-radius: 14px; + margin: 5px; + background-color: #191919; + border: 1px solid rgba(255, 255, 255, 0.06); + box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2); +} + +#LookingGlassDialog .notebook-tab, #LookingGlassDialog > #Toolbar .lg-toolbar-button { border-radius: 9px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03); } + +#LookingGlassDialog > #Toolbar .lg-toolbar-button, #LookingGlassDialog .notebook-tab:selected { background-color: rgba(255, 255, 255, 0.08); } +#LookingGlassDialog > #Toolbar .lg-toolbar-button:hover { background-color: rgba(255, 255, 255, 0.13); } + +.lg-dialog StEntry { + background-color: rgba(48, 48, 48, 0.6); + color: white; + border-color: rgba(255, 255, 255, 0.2); + min-height: 16px; + selection-background-color: ACCENT-COLOR; + selected-color: #fff; } + +.lg-extension { + border-radius: 12px; +} + +.lg-debug-flag-button .toggle-switch { + margin: 5px; + border-radius: 10px; + height: 26px; + padding: 0; } \ No newline at end of file