remove orphaned blockquote sizing

This commit is contained in:
Jeff Atwood 2014-06-30 03:03:54 -07:00
parent d2cf921791
commit f8f79b9388
3 changed files with 5 additions and 10 deletions

View File

@ -115,11 +115,6 @@ body {
}
}
blockquote {
/* 13px left is intentional here to properly align with post quotes */
padding: 10px 4px 4px 13px;
}
.topic-statuses {
float: left;
margin: 0 3px 0 0;

View File

@ -665,7 +665,7 @@ iframe {
/* solo quotes */
blockquote {
/* inherit only the default top and bottom margins here */
/* leave browser defaults for top and bottom here */
margin-left: 0;
margin-right: 0;
padding: 12px;
@ -675,10 +675,10 @@ blockquote {
// we assume blockquotes have their own margins, so all blockquotes
// will remove margins from first (top) and last (bottom) child elements
blockquote > *:first-child {
margin-top: 0;
margin-top: 0 !important;
}
blockquote > *:last-child {
margin-bottom: 0;
margin-bottom: 0 !important;
}

View File

@ -482,10 +482,10 @@ blockquote {
// we assume blockquotes have their own margins, so all blockquotes
// will remove margins from first (top) and last (bottom) child elements
blockquote > *:first-child {
margin-top: 0;
margin-top: 0 !important;
}
blockquote > *:last-child {
margin-bottom: 0;
margin-bottom: 0 !important;
}
.quote-controls {