diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-26 11:01:23 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-26 22:00:24 +0300 |
commit | b107b4c0e2ff5f946e71eb962622295ded7f54ea (patch) | |
tree | a9e5935dbc2d92cb5cfe35bf934dd484b88ab857 /phpBB/adm/style/admin.css | |
parent | 10f0c8b3337001743fc310539da43363873dcf0a (diff) | |
download | forums-b107b4c0e2ff5f946e71eb962622295ded7f54ea.tar forums-b107b4c0e2ff5f946e71eb962622295ded7f54ea.tar.gz forums-b107b4c0e2ff5f946e71eb962622295ded7f54ea.tar.bz2 forums-b107b4c0e2ff5f946e71eb962622295ded7f54ea.tar.xz forums-b107b4c0e2ff5f946e71eb962622295ded7f54ea.zip |
[ticket/11957] Responsive forums list
PHPBB3-11957
Diffstat (limited to 'phpBB/adm/style/admin.css')
-rw-r--r-- | phpBB/adm/style/admin.css | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index b3f086b6d2..48b1712871 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -750,6 +750,19 @@ td.name { color: #BC2A4D; } +/* Forums list */ +table.forums td.folder { + width: 27px; + text-align: center; +} + +table.forums td.actions { + vertical-align: middle; + width: 100px; + text-align: right; + white-space: nowrap; +} + @media only screen and (max-width: 700px), only screen and (max-device-width: 700px) { table.responsive, table.responsive tbody, table.responsive tr, table.responsive td { @@ -846,6 +859,36 @@ td.name { table.responsive#memberlist td:first-child input[type="checkbox"] { float: right; } + + /* Forums list */ + table.responsive.forums td.folder { + float: left; + width: 27px; + background: transparent; + } + .rtl table.responsive.forums td.folder { + float: right; + } + + table.responsive.forums td.forum-desc { + margin-left: 35px; + min-height: 27px; + background: transparent; + } + + .rtl table.responsive.forums td.forum-desc { + margin-left: 0; + margin-right: 35px; + } + + table.responsive.forums td.actions { + clear: both; + text-align: right !important; + } + + .rtl table.responsive.forums td.actions { + text-align: left !important; + } } /* General form styles |