Merge pull request #2057 from awesomerobot/master

adding basic :focus style in for buttons in Firefox
This commit is contained in:
Jeff Atwood 2014-03-05 19:32:10 -08:00
commit c747e10c7f

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;
}