mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
29 lines
No EOL
479 B
SCSS
29 lines
No EOL
479 B
SCSS
// styles for the 'hotness control'
|
|
|
|
@import "foundation/variables";
|
|
@import "foundation/mixins";
|
|
|
|
.hotness-control {
|
|
margin-bottom: 5px;
|
|
|
|
button {
|
|
@include border-radius-all(5px);
|
|
margin-right: 3px;
|
|
background-color: lighten($gray, 10%);
|
|
border: 0;
|
|
width: 25px;
|
|
text-align: center;
|
|
|
|
&:hover {
|
|
background-color: $gray;
|
|
}
|
|
}
|
|
|
|
button.selected {
|
|
background-color: lighten($red, 25%);
|
|
color: $white;
|
|
font-weight: bold;
|
|
}
|
|
|
|
|
|
} |