Buttons: remove clear button styles, buttons effect on focus

This commit is contained in:
Vladyslav Hroshev
2023-04-05 22:57:33 +03:00
parent 263a795d39
commit 5e46592cba

View File

@@ -70,6 +70,7 @@
.button { .button {
color: TEXT-PRIMARY-COLOR; color: TEXT-PRIMARY-COLOR;
background-color: ACCENT-DISABLED-COLOR; background-color: ACCENT-DISABLED-COLOR;
border-radius: 9px;
box-shadow: inset 0 0 0 1px BORDER-SHADOW; box-shadow: inset 0 0 0 1px BORDER-SHADOW;
} }
@@ -83,15 +84,13 @@
background-color: ACCENT-DISABLED_HOVER; background-color: ACCENT-DISABLED_HOVER;
} }
.message-list-clear-button { .button:focus {
border-radius: 9px; background-color: ACCENT-OPACITY-COLOR;
background-color: SECTION-COLOR; box-shadow: inset 0 0 0 2px ACCENT-SECONDARY-COLOR !important;
padding: 3px 15px;
color: TEXT-PRIMARY-COLOR;
} }
.message-list-clear-button:focus { .message-list-controls .button {
box-shadow: inset 0 0 0 2px ACCENT-SECONDARY-COLOR !important; padding: 3px 15px;
} }