From 1187235504220658a1e75455b5bfdf141e4e7a24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Tue, 2 Apr 2024 18:40:23 -0700 Subject: [PATCH] Remove ToolbarView styles --- data/styles/Index.scss | 1 - data/styles/Plug.scss | 92 ------------------------------------------ 2 files changed, 93 deletions(-) delete mode 100644 data/styles/Plug.scss diff --git a/data/styles/Index.scss b/data/styles/Index.scss index 393183b8..83ba2a19 100644 --- a/data/styles/Index.scss +++ b/data/styles/Index.scss @@ -2,6 +2,5 @@ @import '_common.scss'; @import 'CategoryView.scss'; -@import 'Plug.scss'; @import 'SettingsPage.scss'; @import 'SettingsSidebar.scss'; diff --git a/data/styles/Plug.scss b/data/styles/Plug.scss deleted file mode 100644 index 68984fac..00000000 --- a/data/styles/Plug.scss +++ /dev/null @@ -1,92 +0,0 @@ -toolbarview { - &.undershoot-top scrolledwindow { - overshoot.top { - background: - linear-gradient( - to top, - #{'alpha(@accent_color, 0)'} 80%, - #{'alpha(@accent_color, 0.25)'} 100% - ), - linear-gradient( - #{'@borders'}, - rgba(black, 0.05) 1px, - rgba(black, 0.0) rem(3px) - ); - } - - undershoot.top { - background: - linear-gradient( - #{'@borders'}, - rgba(black, 0.05) 1px, - rgba(black, 0.0) rem(3px) - ); - } - } - - &.undershoot-bottom scrolledwindow { - overshoot.bottom { - background: - linear-gradient( - to bottom, - #{'alpha(@accent_color, 0)'} 80%, - #{'alpha(@accent_color, 0.25)'} 100% - ), - linear-gradient( - to top, - #{'@borders'}, - rgba(black, 0.05) 1px, - rgba(black, 0.0) rem(3px) - ); - } - - undershoot.bottom { - background: - linear-gradient( - to top, - #{'@borders'}, - rgba(black, 0.05) 1px, - rgba(black, 0.0) rem(3px) - ); - } - } - - revealer.top-bar headerbar, - revealer.bottom-bar actionbar { - background: inherit; - box-shadow: none; - } - - revealer.top-bar { - &.raised { - box-shadow: - inset 0 -1px 0 0 #{'alpha(@highlight_color, 0.2)'}, - inset 0 1px 0 0 #{'alpha(@highlight_color, 0.3)'}, - inset 1px 0 0 0 #{'alpha(@highlight_color, 0.07)'}, - inset -1px 0 0 0 #{'alpha(@highlight_color, 0.07)'}, - // Intentionally not in ems since it's used as a stroke - 0 1px 0 0 #{'alpha(@borders, 0.4)'}, - 0 1px rem(2px) rgba(black, 0.2); - - &:backdrop { - box-shadow: - inset 0 -1px 0 0 #{'alpha(@highlight_color, 0.2)'}, - inset 0 1px 0 0 #{'alpha(@highlight_color, 0.3)'}, - inset 1px 0 0 0 #{'alpha(@highlight_color, 0.07)'}, - inset -1px 0 0 0 #{'alpha(@highlight_color, 0.07)'}, - 0 0 0 1px #{'alpha(@borders, 0.3)'}, - 0 1px rem(2px) rgba(black, 0.15); - } - } - - &.raised.border { - box-shadow: - inset 0 -1px 0 0 #{'alpha(@highlight_color, 0.2)'}, - inset 0 1px 0 0 #{'alpha(@highlight_color, 0.3)'}, - inset 1px 0 0 0 #{'alpha(@highlight_color, 0.07)'}, - inset -1px 0 0 0 #{'alpha(@highlight_color, 0.07)'}, - // Intentionally not in ems since it's used as a stroke - 0 1px 0 0 #{'alpha(@borders, 0.8)'}; - } - } -}