personal dotfiles: my Hyprland config
epiphany: make stackoverflow nicer
| -rw-r--r-- | .local/share/epiphany/user-stylesheet.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.local/share/epiphany/user-stylesheet.css b/.local/share/epiphany/user-stylesheet.css new file mode 100644 index 0000000..c0f590b --- /dev/null +++ b/.local/share/epiphany/user-stylesheet.css @@ -0,0 +1,19 @@ +/* stackoverflow annoying cookies */ +.js-consent-banner{ + display: none; +} +.js-dismissable-hero{ + display: none; +} +/* stackoverflow distractionless right sidebar */ +body.question-page div#sidebar > div:not(.sidebar-related){ + display:none; +} + +/* stackoverflow no left sidebar */ +body.question-page div#left-sidebar { + display: none; +} +body.question-page div#content { + width: 100% !important; +} |