diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-26 22:45:55 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-26 22:45:55 +0300 |
commit | 522d5cc3f46c3617af939c58e78101dd9887dd2c (patch) | |
tree | 155bfc188092505222dd4e648e604bd3eb4fc677 /phpBB/adm/style/admin.css | |
parent | bea94b1f5b6291bdc1c8f4d3c4e4c725e2740e88 (diff) | |
download | forums-522d5cc3f46c3617af939c58e78101dd9887dd2c.tar forums-522d5cc3f46c3617af939c58e78101dd9887dd2c.tar.gz forums-522d5cc3f46c3617af939c58e78101dd9887dd2c.tar.bz2 forums-522d5cc3f46c3617af939c58e78101dd9887dd2c.tar.xz forums-522d5cc3f46c3617af939c58e78101dd9887dd2c.zip |
[ticket/11957] Responsive ACP permissions
PHPBB3-11957
Diffstat (limited to 'phpBB/adm/style/admin.css')
-rw-r--r-- | phpBB/adm/style/admin.css | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index bdcda9f299..fc565f8713 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -1224,6 +1224,7 @@ select#full_folder_action { } fieldset.quick, p.quick { + float: none !important; text-align: center; } @@ -1861,6 +1862,15 @@ li.pagination ul { /* Permission interface ---------------------------------------- */ +.column1, .column2 { + width: 48%; + float: left; +} + +.ltr .column2, .rtl .column1 { + float: right; +} + fieldset.permissions legend { text-transform: none; } @@ -2149,6 +2159,66 @@ fieldset.permissions .padding { padding: 0; } +@media only screen and (max-width: 700px), only screen and (max-device-width: 700px) +{ + .column1, .column2 { + float: none !important; + width: auto; + } + + .permissions-simple { + clear: both; + } + + .permissions-simple td, .permissions-simple dd { + width: auto !important; + margin-left: 0 !important; + margin-right: 0 !important; + } + + .permissions-simple dd { + margin-top: 5px; + } + + .permissions-panel .tablewrap { + margin: 0 5px; + } + + .permissions-category { + min-width: 0; + margin: 0 !important; + } + + .permissions-category a, .permissions-category a span.tabbg { + display: block; + float: none !important; + background: transparent none; + } + + .permissions-category a { + background: #d9e5ee; + margin: 5px 0; + padding: 0 !important; + border-radius: 3px; + text-decoration: underline; + } + + .permissions-category .activetab a { + background-color: #dd6900; + color: #fff; + } + + .permissions-category a span.tabbg { + color: inherit !important; + padding-top: 6px !important; + padding-bottom: 6px !important; + } + + .permissions-category .activetab span.colour { + border-color: #fff; + } +} + /* Avatars gallery ---------------------------------------- */ #gallery { |