mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-23 11:23:27 +08:00
This eliminates the mobile topic.scss file by moving its styles into the relevant common files with breakpoints, and also removes some unused legacy styles. There should be no major visual changes as a result.
39 lines
654 B
SCSS
Vendored
39 lines
654 B
SCSS
Vendored
.post-actions {
|
|
@include unselectable;
|
|
clear: both;
|
|
text-align: right;
|
|
margin-bottom: 10px;
|
|
|
|
.post-action {
|
|
display: inline-block;
|
|
margin-left: 10px;
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
|
|
.post-menu-area {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
#topic-title {
|
|
.remove-featured-link {
|
|
float: right;
|
|
text-transform: lowercase;
|
|
color: var(--primary-med-or-secondary-med);
|
|
font-size: 0.857rem;
|
|
}
|
|
}
|
|
|
|
#topic-filter {
|
|
background-color: var(--highlight-bg);
|
|
padding: 8px;
|
|
bottom: 0;
|
|
position: fixed;
|
|
width: 100%;
|
|
font-size: var(--font-0);
|
|
z-index: z("dropdown");
|
|
}
|
|
|
|
.onscreen-post .row {
|
|
display: flex; // children should never wrap
|
|
}
|