1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

blue click and focus styling

This commit is contained in:
Kyle Spearrin
2018-01-27 13:47:48 -05:00
parent 84d1591fce
commit 3c76c88d4d
7 changed files with 37 additions and 11 deletions

View File

@@ -95,6 +95,7 @@
text-align: center;
overflow: hidden;
flex: 0 0 auto;
border-bottom: 1px solid darken($brand-primary, 7%);
a, button {
color: white !important;
@@ -231,9 +232,16 @@
font-size: $font-size-base;
color: $button-color;
&:hover {
&:hover, &:focus {
cursor: pointer;
background-color: darken($button-backgound-color, 1.5%);
border-color: darken($button-border-color, 17%);
}
&:focus {
background-color: darken($button-backgound-color, 6%);
border-color: darken($button-border-color, 25%);
outline: 0;
}
&.primary {