mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 08:39:38 -05:00
63 lines
995 B
SCSS
63 lines
995 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 dark-light-diff($primary, $secondary, 90%, -60%);
|
|
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;
|
|
vertical-align: top;
|
|
margin-top: 15px;
|
|
}
|
|
.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;
|
|
}
|
|
}
|