MediaWiki:Common.css: Difference between revisions
Use background_parchment.png as banner |
Fix reader mode always visible |
||
| Line 833: | Line 833: | ||
.discord-widget-modern:hover { background-color: #4752C4; cursor: pointer; } | .discord-widget-modern:hover { background-color: #4752C4; cursor: pointer; } | ||
.discord-widget-modern:hover .discord-bottom { background-color: #3b45a5; } | .discord-widget-modern:hover .discord-bottom { background-color: #3b45a5; } | ||
/* Reader mode toggle always visible - never get locked out */ | |||
body.reader-mode-active #pt-reader-mode, | |||
body.reader-mode-active .reader-mode-toggle { | |||
display: block !important; | |||
position: fixed !important; | |||
top: 8px !important; | |||
left: 8px !important; | |||
z-index: 9999 !important; | |||
background: rgba(0,0,0,0.6) !important; | |||
color: #fff !important; | |||
padding: 6px 12px !important; | |||
border-radius: 4px !important; | |||
cursor: pointer !important; | |||
font-size: 0.85em !important; | |||
} | |||