We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f79912 commit dc924f3Copy full SHA for dc924f3
src/features/posts/buttonHide.ts
@@ -15,7 +15,7 @@ export default class ButtonHide extends OLFeature {
15
this.settingOptions.push(
16
new SettingToggle(
17
"Show all buttons on posts",
18
- "Reload required",
+ "",
19
"allButtons",
20
(showAllButtons: boolean) => {
21
this.disabled = showAllButtons;
src/features/posts/css/buttonHide.scss
@@ -1,6 +1,9 @@
1
.modal-spawner::before {
2
content: "more_vert";
3
}
4
+li:has(.modal-spawner) {
5
+ display: none;
6
+}
7
.hideButtons {
8
.report-button,
9
li:has(.hide-button),
@@ -18,6 +21,9 @@
li:has(.flairoptionpane) {
22
display: block !important;
23
24
+ li:has(.modal-spawner) {
25
+ display: block !important;
26
+ }
27
28
.commentCount::after {
29
content: " comments ";
0 commit comments