diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-27 01:28:57 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-11-02 22:31:39 +0200 |
commit | b225dd37d765cc37beccb139e63432d78e0bc37e (patch) | |
tree | 789acc727f4bd0ec325de54c859e47320492e5a9 /phpBB/adm/style/admin.css | |
parent | 25995e311ca136b64113d78e66a53df8f6a79b81 (diff) | |
download | forums-b225dd37d765cc37beccb139e63432d78e0bc37e.tar forums-b225dd37d765cc37beccb139e63432d78e0bc37e.tar.gz forums-b225dd37d765cc37beccb139e63432d78e0bc37e.tar.bz2 forums-b225dd37d765cc37beccb139e63432d78e0bc37e.tar.xz forums-b225dd37d765cc37beccb139e63432d78e0bc37e.zip |
[ticket/11977] Use CSS instead of JS to disable up/down icons
PHPBB3-11977
Diffstat (limited to 'phpBB/adm/style/admin.css')
-rw-r--r-- | phpBB/adm/style/admin.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 0cbdc2e9f8..006cee9080 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -869,6 +869,14 @@ table td.actions { white-space: nowrap; } +table tr:first-child td.actions .up, table tr:last-child td.actions .down { + display: none; +} + +table tr:first-child td.actions .up-disabled, table tr:last-child td.actions .down-disabled { + display: inline !important; +} + table.styles td.users, table td.mark { text-align: center; } |