mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
FIX: helpful/flagged posts styling on mobile
This commit is contained in:
parent
09d7a697bf
commit
46a88e0c70
1 changed files with 33 additions and 1 deletions
|
@ -222,7 +222,7 @@
|
|||
color: scale-color($primary, $lightness: 50%);
|
||||
}
|
||||
.item.moderator-action {
|
||||
background-color: scale-color($tertiary, $lightness: 40%);
|
||||
background-color: scale-color($highlight, $lightness: 50%);
|
||||
}
|
||||
.item.deleted {
|
||||
opacity: 0.8;
|
||||
|
@ -272,6 +272,38 @@
|
|||
}
|
||||
}
|
||||
|
||||
.staff-counters {
|
||||
text-align: center;
|
||||
> div {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
a.active {
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
.pill {
|
||||
border-radius: 15px;
|
||||
display: inline-block;
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
line-height: 30px;
|
||||
}
|
||||
.helpful-flags {
|
||||
background-color: green;
|
||||
}
|
||||
.flagged-posts {
|
||||
background-color: #E49735;
|
||||
}
|
||||
.deleted-posts {
|
||||
background-color: #EC441B;
|
||||
}
|
||||
.suspensions {
|
||||
background-color: #c22020;
|
||||
}
|
||||
|
||||
div#pagedown-editor {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue