Fix Original theme buttons

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2022-11-12 13:53:14 +01:00
parent e047446323
commit 551509f345
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889
2 changed files with 29 additions and 1 deletions

View File

@ -1774,9 +1774,32 @@ input#auto_increment_opt {
} }
} }
input.btn { input.btn,
button.btn {
border-color: $btn-border-color;
color: #333; color: #333;
background-color: #d0dce0; background-color: #d0dce0;
&:hover,
&:focus,
&:active {
background-color: #8b9aa0;
border-color: $btn-border-color;
}
}
button.jsPrintButton {
background-color: unset;
border-color: unset;
border: unset;
&:hover,
&:focus,
&:active {
background-color: unset;
border-color: unset;
border: unset;
}
} }
body .ui-widget { body .ui-widget {

View File

@ -55,6 +55,7 @@ $bg-two: #d5d5d5;
$body-bg: #f5f5f5; $body-bg: #f5f5f5;
$body-color: $main-color; $body-color: $main-color;
$primary: $navi-pointer-background;
// Links // Links
@ -63,6 +64,10 @@ $link-decoration: none;
$link-hover-color: #f00; $link-hover-color: #f00;
$link-hover-decoration: underline; $link-hover-decoration: underline;
// Buttons
$btn-border-color: black;
// Components // Components
$border-radius: 0; $border-radius: 0;