Merge pull request #2070 from nschonni/fix-mailformed-rule

Fix unmatched braces of "nav.post-controls button"
This commit is contained in:
Régis Hanol 2014-03-07 10:37:25 +01:00
commit 7670598658
2 changed files with 170 additions and 166 deletions

View File

@ -106,7 +106,9 @@ section.post-menu-area, .post-actions {
nav.post-controls {
padding: 0;
button {color: lighten($primary_text_color, 50%);
button {
color: lighten($primary_text_color, 50%);
}
margin-right: 2px;
}
@ -134,7 +136,8 @@ nav.post-controls {
padding: 8px 20px;
margin-left: 10px;
&:hover { color: $tertiary_text_color;
&:hover {
color: $tertiary_text_color;
background: $emphasis_text_color;
}
@ -205,7 +208,6 @@ nav.post-controls {
}
}
}
}
.embedded-posts {
background: lighten($secondary_background_color, 76%);
@ -839,7 +841,8 @@ button.show-replies {
background: lighten($secondary_background_color, 76%);
margin-bottom: 0;
padding-bottom: 8px;
&:hover {background: lighten($secondary_background_color, 76%);
&:hover {
background: lighten($secondary_background_color, 76%);
.badge-posts {color: $secondary_text_color;}
}
}

View File

@ -21,7 +21,7 @@ nav.post-controls {
padding: 0;
border-right: 1px solid $primary_border_color;
margin-top: 10px;
button {color: lighten($primary_text_color, 35%);
button {color: lighten($primary_text_color, 35%);}
border-radius: 4px;
margin-right: 2px;
@ -94,7 +94,7 @@ button {
}
}
}
}
@ -486,5 +486,6 @@ blockquote {
.gutter { display: none; }
.posts-wrapper { position: relative;
.posts-wrapper {
position: relative;
}