FIX: [quote][/quote] missing top padding

This commit is contained in:
Jeff Atwood 2014-08-27 02:22:53 -07:00
parent 87d2be3ecf
commit dc6dd26b10
1 changed files with 2 additions and 2 deletions

View File

@ -675,8 +675,6 @@ blockquote > *:last-child {
/* quotes with attribution */
.quote {
&>blockquote {
margin-top: 0;
padding-top: 0;
.onebox-result {
background-color: scale-color-diff();
}
@ -686,6 +684,8 @@ blockquote > *:last-child {
border-left: 5px solid darken(scale-color-diff(), 10%);
background-color: scale-color-diff();
padding: 12px;
/* blockquote is underneath this and has top margin we need to absorb */
margin-bottom: -1.5em;
.avatar { margin-right: 7px; }
img { margin-top: -4px; }
}