66 lines
1.4 KiB
Plaintext
66 lines
1.4 KiB
Plaintext
@import "../base/000_vars.scss";
|
|
|
|
div#c-modqueue {
|
|
div.post {
|
|
padding: 1em;
|
|
margin-bottom: 4em;
|
|
overflow: hidden;
|
|
|
|
&.post-pos-score {
|
|
background: var(--modqueue-positive-score-background-color);
|
|
}
|
|
|
|
&.post-neg-score {
|
|
background: var(--modqueue-negative-score-background-color);
|
|
}
|
|
|
|
aside.column {
|
|
text-align: center;
|
|
margin-bottom: 1em;
|
|
|
|
@media (min-width: 660px) {
|
|
flex-basis: 220px;
|
|
text-align: right;
|
|
padding-right: 2em;
|
|
}
|
|
}
|
|
|
|
.quick-mod {
|
|
margin-bottom: 0.5em;
|
|
|
|
@media (min-width: 660px) {
|
|
font-size: $h2_size;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.mod-queue-post-source {
|
|
word-break: break-all;
|
|
}
|
|
|
|
<% Danbooru.config.modqueue_quality_warning_tags.each do |tag| %>
|
|
&[data-tags~="<%= tag %>"] {
|
|
background-color: var(--modqueue-quality-warning-color);
|
|
}
|
|
<% end %>
|
|
|
|
<% Danbooru.config.modqueue_sample_warning_tags.each do |tag| %>
|
|
&[data-tags~="<%= tag %>"] {
|
|
background-color: var(--modqueue-sample-warning-color);
|
|
}
|
|
<% end %>
|
|
|
|
&[data-tags~=animated], &[data-file-ext=swf], &[data-file-ext=webm], &[data-file-ext=zip], &[data-file-ext=mp4] {
|
|
aside:before {
|
|
@include animated-icon;
|
|
}
|
|
}
|
|
|
|
&[data-has-sound=true] {
|
|
aside:before {
|
|
@include sound-icon;
|
|
}
|
|
}
|
|
}
|
|
}
|