Fix inconsistencies on inputs in Chrome vs. others

This commit is contained in:
gconsidine
2017-07-10 11:27:31 -04:00
parent b79600d2e5
commit 36120b3115
5 changed files with 38 additions and 25 deletions

View File

@@ -27,6 +27,19 @@
line-height: 1;
}
.at-mixin-InputButton () {
display: block;
height: @at-height-button;
line-height: 1;
&, &:active, &:hover, &:focus {
color: @at-color-button-text-default;
border-color: @at-color-input-border;
background-color: @at-color-default;
cursor: pointer;
}
}
.at-mixin-ButtonColor (@background, @color, @hover: '@{background}-hover') {
background-color: @@background;