diff options
author | Einar Egilsson <einar@einaregilsson.com> | 2016-02-22 10:14:31 +0000 |
---|---|---|
committer | Einar Egilsson <einar@einaregilsson.com> | 2016-02-22 10:14:31 +0000 |
commit | 4cd86af900055192fabb0d08aa90cc0c067a4fa5 (patch) | |
tree | bc8d120be32c3d387b1243961eb58a61526b2cd4 /css | |
parent | 18ef5b0b6aee029ff7a4d9bb40c0713b0458ec5c (diff) |
Show message in Firefox private mode that Redirector does not work
Diffstat (limited to 'css')
-rw-r--r-- | css/redirector.css | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/css/redirector.css b/css/redirector.css index 9417eb1..c149787 100644 --- a/css/redirector.css +++ b/css/redirector.css @@ -457,4 +457,23 @@ footer small a, footer small a:visited { footer small a:hover { text-decoration: underline; -}
\ No newline at end of file +} + + +/* Hide by default so we can show a message in private mode where angular won't load */ + +.private #edit-redirect-form, .private #delete-redirect-form, .private .redirect-table, .private #message-box, .private #menu { + display:none; +} + +#private-mode-message { + background-color:white; + margin:auto; + border:solid 4px red; + border-radius:4px; + font-size: 30px; + width: 600px; + padding: 20px; + margin-top: 200px; + border-width: 4px; +} |