mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
Remove the quote post button from pagedown editor when creating a topic and editing About Me in preferences
This commit is contained in:
parent
0f98c1644a
commit
4d0035e7fd
5 changed files with 17 additions and 1 deletions
|
@ -112,7 +112,7 @@
|
|||
|
||||
<div class="control-group">
|
||||
<label class="control-label">{{i18n user.bio}}</label>
|
||||
<div class="controls">
|
||||
<div class="controls bio-composer">
|
||||
{{pagedown value=bio_raw}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -443,6 +443,10 @@ div.ac-wrap {
|
|||
}
|
||||
}
|
||||
|
||||
#reply-control.topic #wmd-quote-post {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#reply-control {
|
||||
&.hide-preview {
|
||||
.wmd-controls {
|
||||
|
|
|
@ -41,6 +41,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
.bio-composer #wmd-quote-post {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#profile-background-preview {
|
||||
height: 270px;
|
||||
|
||||
|
|
|
@ -358,6 +358,10 @@ div.ac-wrap {
|
|||
}
|
||||
}
|
||||
|
||||
#reply-control.topic #wmd-quote-post {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#reply-control {
|
||||
|
||||
|
||||
|
|
|
@ -71,6 +71,10 @@
|
|||
background-size: cover;
|
||||
background-color: $secondary_background_color;
|
||||
}
|
||||
|
||||
.bio-composer #wmd-quote-post {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
#about-me {
|
||||
|
|
Loading…
Reference in a new issue