mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
FIX: [quote][/quote] missing top padding
This commit is contained in:
parent
87d2be3ecf
commit
dc6dd26b10
1 changed files with 2 additions and 2 deletions
|
@ -675,8 +675,6 @@ blockquote > *:last-child {
|
||||||
/* quotes with attribution */
|
/* quotes with attribution */
|
||||||
.quote {
|
.quote {
|
||||||
&>blockquote {
|
&>blockquote {
|
||||||
margin-top: 0;
|
|
||||||
padding-top: 0;
|
|
||||||
.onebox-result {
|
.onebox-result {
|
||||||
background-color: scale-color-diff();
|
background-color: scale-color-diff();
|
||||||
}
|
}
|
||||||
|
@ -686,6 +684,8 @@ blockquote > *:last-child {
|
||||||
border-left: 5px solid darken(scale-color-diff(), 10%);
|
border-left: 5px solid darken(scale-color-diff(), 10%);
|
||||||
background-color: scale-color-diff();
|
background-color: scale-color-diff();
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
|
/* blockquote is underneath this and has top margin we need to absorb */
|
||||||
|
margin-bottom: -1.5em;
|
||||||
.avatar { margin-right: 7px; }
|
.avatar { margin-right: 7px; }
|
||||||
img { margin-top: -4px; }
|
img { margin-top: -4px; }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue