From 89b1f51ed5c0cb0f136774ef957c537ccfa41890 Mon Sep 17 00:00:00 2001 From: Dorota Czaplejewicz Date: Fri, 4 Dec 2020 16:27:49 +0000 Subject: [PATCH] appearance: Colour latched/locked according to design --- data/style-Adwaita:dark.css | 7 ++++++- data/style.css | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/data/style-Adwaita:dark.css b/data/style-Adwaita:dark.css index 2165543c..6b52750f 100644 --- a/data/style-Adwaita:dark.css +++ b/data/style-Adwaita:dark.css @@ -31,11 +31,16 @@ sq_button.wide { border-color: #3e3a44; } -sq_button.locked { +sq_button.latched { background: #ffffff; color: #2b292f; } +sq_button.locked { + background: #ffffff; + color: #1c71d8; +} + sq_button.action { font-size: 0.75em; } diff --git a/data/style.css b/data/style.css index a010ef47..40b8ffa6 100644 --- a/data/style.css +++ b/data/style.css @@ -34,11 +34,16 @@ sq_button.wide { border-color: @borders; /* #3e3a44; */ } -sq_button.locked { +sq_button.latched { background: @theme_fg_color; /*#ffffff;*/ color: @theme_bg_color; /*#2b292f;*/ } +sq_button.locked { + background: @theme_fg_color; /*#ffffff;*/ + color: mix(@theme_selected_bg_color, @theme_bg_color, 0.4); /*#2b292f;*/ +} + sq_button.action { font-size: 0.75em; }