diff options
author | Crizz0 <mail@crizzo.de> | 2014-02-02 15:12:18 +0100 |
---|---|---|
committer | Crizzo <mail@crizzo.de> | 2014-03-02 18:10:48 +0100 |
commit | e97b0e16e0090f81fa1711f70bb1e72a4a6b997f (patch) | |
tree | 47fb897bf932b6d9b6142c89884e8c93161a6d13 /phpBB/styles | |
parent | 6152d6c41e47a69263d127e2953c0a74cf711171 (diff) | |
download | forums-e97b0e16e0090f81fa1711f70bb1e72a4a6b997f.tar forums-e97b0e16e0090f81fa1711f70bb1e72a4a6b997f.tar.gz forums-e97b0e16e0090f81fa1711f70bb1e72a4a6b997f.tar.bz2 forums-e97b0e16e0090f81fa1711f70bb1e72a4a6b997f.tar.xz forums-e97b0e16e0090f81fa1711f70bb1e72a4a6b997f.zip |
[ticket/12126] Fixed position of alert box in IE
PHPBB3-12126
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 11 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/responsive.css | 4 |
2 files changed, 7 insertions, 8 deletions
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index 84f6859936..109e97d4d9 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -812,16 +812,13 @@ li.pagination ul { ---------------------------------------- */ .phpbb_alert { border: 1px solid transparent; - position: fixed; display: none; + left: 25%; + padding: 0 25px 20px 25px; + position: fixed; + right: 25%; top: 150px; - left: 0; - right: 0; - max-width: 640px; - margin: 0 auto; z-index: 50; - padding: 25px; - padding: 0 25px 20px 25px; } @media only screen and (max-height: 500px), only screen and (max-device-width: 500px) diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index a6bc52db52..36511e79aa 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -495,8 +495,10 @@ fieldset.display-actions { } .phpbb_alert { + left: 0; max-width: none; - margin: 0 25px; + margin: 0 5px; + right: 0; } .attach-comment dfn { |