mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:40:42 +08:00
62 lines
918 B
SCSS
62 lines
918 B
SCSS
// Styles for the topic admin menu
|
|
|
|
.show-topic-admin {
|
|
position: fixed;
|
|
top: 120px;
|
|
right: 10px;
|
|
z-index: 1000;
|
|
outline: 0;
|
|
}
|
|
|
|
.topic-admin-menu {
|
|
background-color: $secondary;
|
|
width: 205px;
|
|
padding: 10px;
|
|
border: 1px solid scale-color-diff();
|
|
z-index: 1001;
|
|
|
|
ul {
|
|
list-style: none;
|
|
margin: 10px 0 0 0;
|
|
}
|
|
|
|
button {
|
|
width: 200px;
|
|
margin-bottom: 5px;
|
|
|
|
i {
|
|
width: 14px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.modal-body.feature-topic .feature-section {
|
|
display: block;
|
|
.button {
|
|
width: 33%;
|
|
display: inline-block;
|
|
}
|
|
.desc {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
max-width: 60%;
|
|
margin-left: 10px;
|
|
p {
|
|
margin: 10px 0;
|
|
}
|
|
}
|
|
}
|
|
.mobile-view .feature-topic .feature-section {
|
|
.button {
|
|
width: auto;
|
|
display: block;
|
|
margin: 0 10px;
|
|
}
|
|
.desc {
|
|
display: block;
|
|
clear: both;
|
|
max-width: 90%;
|
|
margin: 0 10px;
|
|
}
|
|
}
|