appearance: Colour latched/locked according to design

This commit is contained in:
Dorota Czaplejewicz
2020-12-04 16:27:49 +00:00
parent 7b1755a489
commit 89b1f51ed5
2 changed files with 12 additions and 2 deletions

View File

@ -31,11 +31,16 @@ sq_button.wide {
border-color: #3e3a44; border-color: #3e3a44;
} }
sq_button.locked { sq_button.latched {
background: #ffffff; background: #ffffff;
color: #2b292f; color: #2b292f;
} }
sq_button.locked {
background: #ffffff;
color: #1c71d8;
}
sq_button.action { sq_button.action {
font-size: 0.75em; font-size: 0.75em;
} }

View File

@ -34,11 +34,16 @@ sq_button.wide {
border-color: @borders; /* #3e3a44; */ border-color: @borders; /* #3e3a44; */
} }
sq_button.locked { sq_button.latched {
background: @theme_fg_color; /*#ffffff;*/ background: @theme_fg_color; /*#ffffff;*/
color: @theme_bg_color; /*#2b292f;*/ 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 { sq_button.action {
font-size: 0.75em; font-size: 0.75em;
} }