mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:50:45 +08:00
32 lines
488 B
SCSS
32 lines
488 B
SCSS
// Styles for the topic admin menu
|
|
|
|
@import "common/foundation/variables";
|
|
@import "common/foundation/mixins";
|
|
|
|
#show-topic-admin {
|
|
position: fixed;
|
|
top: 70px;
|
|
right: 10px;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.topic-admin-menu {
|
|
background-color: $white;
|
|
width: 205px;
|
|
padding: 10px;
|
|
border: 1px solid $gray;
|
|
position: fixed;
|
|
top: 70px;
|
|
right: 10px;
|
|
z-index: 1000;
|
|
|
|
ul {
|
|
list-style: none;
|
|
margin: 10px 0 0 0;
|
|
}
|
|
|
|
button {
|
|
width: 200px;
|
|
margin-bottom: 5px;
|
|
}
|
|
} |