FIX: quote icon in Quote Reply not clickable
This commit is contained in:
parent
aa0d14825a
commit
3cf433ab1e
|
@ -27,7 +27,6 @@ export default Discourse.View.extend({
|
|||
@method render
|
||||
**/
|
||||
render: function(buffer) {
|
||||
buffer.push('<i class="fa fa-quote-right"></i> ');
|
||||
buffer.push(I18n.t("post.quote_reply"));
|
||||
},
|
||||
|
||||
|
|
|
@ -81,3 +81,22 @@ aside.quote {
|
|||
content: "\f061";
|
||||
}
|
||||
}
|
||||
|
||||
.quote-button {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: scale-color($primary, $lightness: 50%);
|
||||
color: $secondary;
|
||||
padding: 10px;
|
||||
z-index: 401;
|
||||
|
||||
&:before {
|
||||
font-family: "FontAwesome";
|
||||
content: "\f10e\00a0\00a0";
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: scale-color($primary, $lightness: 40%);
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
|
@ -513,20 +513,6 @@ button.expand-post {
|
|||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.quote-button {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: scale-color($primary, $lightness: 50%);
|
||||
color: $secondary;
|
||||
padding: 10px;
|
||||
z-index: 401;
|
||||
|
||||
&:hover {
|
||||
background-color: scale-color($primary, $lightness: 40%);
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.quote-button.visible {
|
||||
display: block;
|
||||
}
|
||||
|
|
|
@ -334,20 +334,6 @@ span.post-count {
|
|||
}
|
||||
}
|
||||
|
||||
.quote-button {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: scale-color($primary, $lightness: 50%);
|
||||
color: $primary;
|
||||
padding: 10px;
|
||||
z-index: 401;
|
||||
|
||||
&:hover {
|
||||
background-color: scale-color($primary, $lightness: 50%);
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.quote-button.visible {
|
||||
display: block;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue