1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

disabled button styling

This commit is contained in:
Kyle Spearrin
2018-06-12 14:06:42 -04:00
parent ddab383b55
commit 4aacc06af0
2 changed files with 10 additions and 4 deletions

View File

@@ -163,14 +163,20 @@ form label:not(.form-check-label) {
font-weight: bold;
}
.btn[class*="btn-outline-"]:not(:hover) {
background-color: #ffffff;
.btn[class*="btn-outline-"] {
&:not(:hover) {
background-color: #ffffff;
}
&:disabled {
opacity: 1;
}
}
.btn-outline-secondary {
color: $text-muted;
&:hover {
&:hover:not(:disabled) {
color: $body-color;
}
}