adding basic :focus style in for buttons in Firefox

This commit is contained in:
Kris Aubuchon 2014-03-05 22:18:42 -05:00
parent 2b0151afe9
commit 899a5a87cd
1 changed files with 6 additions and 7 deletions

View File

@ -13,8 +13,6 @@ body {
min-width: $large-width;
}
.container {
@extend .clearfix;
max-width: $large-width;
@ -35,12 +33,8 @@ body {
.full-width {
width: $medium-width;
}
}
/**/
@include small-width {
body {
@ -50,7 +44,6 @@ body {
.full-width {
width: $small-width;
}
}
a.no-href {
@ -79,6 +72,12 @@ body {
color: $tertiary_text_color;
}
}
// tab focus in firefox
button:focus::-moz-focus-inner {
border: 1px dotted;
}
.coldmap-high {
color: $coldmap-high !important;
}