aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorVjacheslav Trushkin <cyberalien@gmail.com>2013-10-26 01:07:04 +0300
committerVjacheslav Trushkin <cyberalien@gmail.com>2013-10-26 22:00:24 +0300
commitc23c64cb6d848382542fc5d50899f9a921ffe805 (patch)
treee0cdcf5fa3ae2d7aa2549cfce192b277366848c0 /phpBB
parent9a8b463c334c27ca958ab4de8e660fd591bf4e95 (diff)
downloadforums-c23c64cb6d848382542fc5d50899f9a921ffe805.tar
forums-c23c64cb6d848382542fc5d50899f9a921ffe805.tar.gz
forums-c23c64cb6d848382542fc5d50899f9a921ffe805.tar.bz2
forums-c23c64cb6d848382542fc5d50899f9a921ffe805.tar.xz
forums-c23c64cb6d848382542fc5d50899f9a921ffe805.zip
[ticket/11957] Responsive jQuery popups
PHPBB3-11957
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/adm/style/admin.css21
1 files changed, 19 insertions, 2 deletions
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css
index 68c5645d9c..f644adb0d4 100644
--- a/phpBB/adm/style/admin.css
+++ b/phpBB/adm/style/admin.css
@@ -1288,8 +1288,10 @@ input.button1:focus, input.button2:focus, input.button3:focus {
position: fixed;
display: none;
top: 150px;
- left: 25%;
- width: 50%;
+ left: 0;
+ right: 0;
+ max-width: 600px;
+ margin: 0 auto;
z-index: 50;
padding: 25px;
padding: 0 25px 20px 25px;
@@ -1345,6 +1347,21 @@ input.button1:focus, input.button2:focus, input.button3:focus {
opacity: 0.5;
}
+@media only screen and (max-height: 500px), only screen and (max-device-width: 500px)
+{
+ .phpbb_alert {
+ top: 25px;
+ }
+}
+
+@media only screen and (max-width: 700px), only screen and (max-device-width: 700px)
+{
+ .phpbb_alert {
+ max-width: none;
+ margin: 0 25px;
+ }
+}
+
/* Pagination
---------------------------------------- */
.pagination {