mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
Merge pull request #2057 from awesomerobot/master
adding basic :focus style in for buttons in Firefox
This commit is contained in:
commit
c747e10c7f
1 changed files with 6 additions and 7 deletions
|
@ -13,8 +13,6 @@ body {
|
||||||
min-width: $large-width;
|
min-width: $large-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
@extend .clearfix;
|
@extend .clearfix;
|
||||||
max-width: $large-width;
|
max-width: $large-width;
|
||||||
|
@ -35,12 +33,8 @@ body {
|
||||||
.full-width {
|
.full-width {
|
||||||
width: $medium-width;
|
width: $medium-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**/
|
|
||||||
|
|
||||||
|
|
||||||
@include small-width {
|
@include small-width {
|
||||||
body {
|
body {
|
||||||
|
@ -50,7 +44,6 @@ body {
|
||||||
.full-width {
|
.full-width {
|
||||||
width: $small-width;
|
width: $small-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a.no-href {
|
a.no-href {
|
||||||
|
@ -79,6 +72,12 @@ body {
|
||||||
color: $tertiary_text_color;
|
color: $tertiary_text_color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// tab focus in firefox
|
||||||
|
button:focus::-moz-focus-inner {
|
||||||
|
border: 1px dotted;
|
||||||
|
}
|
||||||
|
|
||||||
.coldmap-high {
|
.coldmap-high {
|
||||||
color: $coldmap-high !important;
|
color: $coldmap-high !important;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue