Remove the approve option from the post mode menu. Mass approving posts is rarely needed. The javascript was also buggy (it didn't update the data attributes correctly when undeleting a post). The replacement for this feature is to use a tagscript with the status:active tag.
32 lines
693 B
SCSS
32 lines
693 B
SCSS
body.mode-edit {
|
|
background-color: var(--post-mode-menu-edit-background);
|
|
}
|
|
|
|
body.mode-tag-script {
|
|
background-color: var(--post-mode-menu-tag-script-background);
|
|
}
|
|
|
|
body.mode-add-fav {
|
|
background-color: var(--post-mode-menu-add-fav-background);
|
|
}
|
|
|
|
body.mode-remove-fav {
|
|
background-color: var(--post-mode-menu-remove-fav-background);
|
|
}
|
|
|
|
body.mode-vote-up {
|
|
background-color: var(--post-mode-menu-vote-up-background);
|
|
}
|
|
|
|
body.mode-vote-down {
|
|
background-color: var(--post-mode-menu-vote-down-background);
|
|
}
|
|
|
|
body.mode-translation {
|
|
background-color: var(--post-mode-menu-translation-background);
|
|
}
|
|
|
|
#page, #top, #page-footer {
|
|
background-color: var(--body-background-color);
|
|
}
|