Files
danbooru/app/javascript/src/styles/specific/forum.scss
evazion 5b2675b831 css: clean up responsive css.
* Reduce size of buttons, form inputs, site menu items, paginator, and
  sidebar text.
* Remove various dead rules (nonexistent selectors, rules overriden by
  other rules, rules that were otherwise redundant or did nothing).
* Increase page margin size.
* Fix notes being mispositioned (caused by `#image { margin-top: 5px }` rule).
2019-09-30 00:58:34 -05:00

61 lines
1.0 KiB
SCSS

div.list-of-forum-posts {
article.forum-post {
a.voted {
font-weight: bold;
}
.vote-score-up {
color: var(--forum-vote-up-color);
}
.vote-score-meh {
color: var(--forum-vote-meh-color);
}
.vote-score-down {
color: var(--forum-vote-down-color);
}
div.content {
.edit_forum_post, .edit_forum_topic {
display: none;
}
menu {
ul.votes {
margin: 0.5em 0;
}
}
}
}
}
div#c-forum-topics {
span.new {
font-size: 80%;
color: var(--forum-new-topic-color);
margin-right: 0.5em;
}
span.locked-topic {
color: var(--muted-text-color);
}
span.level-topic {
color: var(--forum-level-restricted-topic-color);
font-weight: bold;
}
tr.forum-topic-row td:last-child {
white-space: nowrap;
}
}
#c-forum-posts #a-index {
tr[data-topic-is-deleted="true"] .forum-post-topic-title::after,
tr[data-is-deleted="true"] .forum-post-excerpt::after {
content: " (deleted)";
color: var(--muted-text-color);
}
}