mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
FIX: regression, go to quoted post missing in quotes
refactors common code as well
This commit is contained in:
parent
b8c36bd2da
commit
a050fa887f
3 changed files with 29 additions and 30 deletions
|
@ -57,4 +57,30 @@ aside.quote {
|
||||||
|
|
||||||
.post-hidden {
|
.post-hidden {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.quote-controls {
|
||||||
|
float: right;
|
||||||
|
a {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.back:before
|
||||||
|
{
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 8px;
|
||||||
|
font-family: "FontAwesome";
|
||||||
|
position: relative;
|
||||||
|
z-index: 20;
|
||||||
|
content: "\f062";
|
||||||
|
}
|
||||||
|
.quote-other-topic:before
|
||||||
|
{
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 8px;
|
||||||
|
font-family: "FontAwesome";
|
||||||
|
position: relative;
|
||||||
|
z-index: 20;
|
||||||
|
content: "\f061";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -702,22 +702,8 @@ blockquote > *:last-child {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.quote-controls {
|
.quote-controls, .quote-controls .back:before, .quote-controls .quote-other-topic:before {
|
||||||
float: right;
|
|
||||||
color: scale-color($primary, $lightness: 50%);
|
color: scale-color($primary, $lightness: 50%);
|
||||||
a {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
.back:before
|
|
||||||
{
|
|
||||||
display: inline-block;
|
|
||||||
margin-left: 8px;
|
|
||||||
color: scale-color($primary, $lightness: 50%);
|
|
||||||
font-family: "FontAwesome";
|
|
||||||
position: relative;
|
|
||||||
z-index: 20;
|
|
||||||
content: "\f062";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.gutter {
|
.gutter {
|
||||||
|
|
|
@ -476,21 +476,8 @@ blockquote > *:last-child {
|
||||||
margin-bottom: 0 !important;
|
margin-bottom: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.quote-controls {
|
.quote-controls, .quote-controls .back:before, .quote-controls .quote-other-topic:before {
|
||||||
float: right;
|
|
||||||
color: $primary;
|
color: $primary;
|
||||||
a {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
.back:before {
|
|
||||||
display: inline-block;
|
|
||||||
margin-left: 8px;
|
|
||||||
color: $primary;
|
|
||||||
font-family: "FontAwesome";
|
|
||||||
position: relative;
|
|
||||||
z-index: 20;
|
|
||||||
content: "\f062";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue