mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:29:18 +08:00
c038758f8c
- Move "New Category" and "Reorder Categories" into a dropdown - Always show "New Topic" on categories page, even for admins - Make category reorder modal full-height (.full-height-modal) - Move category reorder stylesheet out of admin stylesheet
32 lines
567 B
SCSS
32 lines
567 B
SCSS
.reorder-categories {
|
|
input {
|
|
width: 4em;
|
|
}
|
|
.th-pos {
|
|
width: calc(4em + 150px);
|
|
}
|
|
tbody tr {
|
|
background-color: transparent;
|
|
transition: background 0s ease;
|
|
&.highlighted {
|
|
background-color: rgba($highlight, 0.4);
|
|
&.done {
|
|
background-color: transparent;
|
|
transition-duration: 1s;
|
|
}
|
|
}
|
|
&:first-child td {
|
|
padding-top: 7px;
|
|
}
|
|
}
|
|
tbody {
|
|
border-bottom: 1px solid blend-primary-secondary(50%);
|
|
}
|
|
table {
|
|
padding-bottom: 150px;
|
|
}
|
|
}
|
|
.category-admin-menu ul {
|
|
width: 320px;
|
|
}
|