diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-04-01 00:16:39 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-04-01 00:16:39 +0200 |
commit | 50d9b2934742ad9fb0dc8354d405789e3c14cd00 (patch) | |
tree | a3dc02d0d7430078b0d6cfe8cb816d6ed63e233a /view/theme | |
parent | 90a5ba01a35aeb3629ebe76069e68c64b913a4d5 (diff) | |
download | volse-hubzilla-50d9b2934742ad9fb0dc8354d405789e3c14cd00.tar.gz volse-hubzilla-50d9b2934742ad9fb0dc8354d405789e3c14cd00.tar.bz2 volse-hubzilla-50d9b2934742ad9fb0dc8354d405789e3c14cd00.zip |
slightly change the way fullscreen works and bring it to mod mail
Diffstat (limited to 'view/theme')
-rw-r--r-- | view/theme/redbasic/css/style.css | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 3172a6520..6feb1154b 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1519,19 +1519,27 @@ nav .dropdown-menu { } .generic-content-wrapper.fullscreen { - position: fixed; + position: absolute; width: 100%; height: 100%; top: 0px; left: 0px; + border: 0px; border-radius: 0px; - z-index: 10000; } .generic-content-wrapper.fullscreen .section-title-wrapper { border-radius: 0px; } +.generic-content-wrapper.fullscreen .section-content-wrapper { + border-radius: 0px; +} + +#inline-btn { + display: none; +} + .chatroom-index-row:hover td, .locs-index-row:hover td, [id^="cloud-index-"]:hover td, |