1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

added validation to login form

This commit is contained in:
Kyle Spearrin
2018-01-30 23:34:45 -05:00
parent c9f7a781a8
commit b50bf9d5cc
7 changed files with 89 additions and 20 deletions

View File

@@ -8,18 +8,23 @@
font-size: $font-size-base;
color: $button-color;
&:hover, &:focus {
&:hover:not([disabled]), &:focus:not([disabled]) {
cursor: pointer;
background-color: darken($button-backgound-color, 1.5%);
border-color: darken($button-border-color, 17%);
}
&:focus {
&:focus:not([disabled]) {
background-color: darken($button-backgound-color, 6%);
border-color: darken($button-border-color, 25%);
outline: 0;
}
&[disabled] {
background-color: darken($button-backgound-color, 1.5%);
cursor: default;
}
&.primary {
color: $button-color-primary;
}

View File

@@ -8,6 +8,10 @@
color: $text-muted !important;
}
[hidden] {
display: none !important;
}
.monospaced {
font-family: $font-family-monospace;
}