discourse/app/assets/stylesheets/desktop/topic-admin-menu.scss
Erick Guan 0e0013b73f *minus #show-topic-admin button z-index by 1 which will be covered by #user-dropdown
*Add 14px width for #topic-admin-menu icon, align the button text
2014-04-03 17:51:09 +00:00

33 lines
481 B
SCSS

// Styles for the topic admin menu
#show-topic-admin {
position: fixed;
top: 70px;
right: 10px;
z-index: 999;
}
.topic-admin-menu {
background-color: $primary_background_color;
width: 205px;
padding: 10px;
border: 1px solid $primary_border_color;
position: fixed;
top: 70px;
right: 10px;
z-index: 1000;
ul {
list-style: none;
margin: 10px 0 0 0;
}
button {
width: 200px;
margin-bottom: 5px;
i {
width: 14px;
}
}
}