diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-26 10:12:12 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-26 22:00:24 +0300 |
commit | 10f0c8b3337001743fc310539da43363873dcf0a (patch) | |
tree | c33d046a8239df56026c432cb85b13274fb9ae4a /phpBB/adm/style/admin.css | |
parent | 365d07ff6c481e604cd83425abe128eff3af70f0 (diff) | |
download | forums-10f0c8b3337001743fc310539da43363873dcf0a.tar forums-10f0c8b3337001743fc310539da43363873dcf0a.tar.gz forums-10f0c8b3337001743fc310539da43363873dcf0a.tar.bz2 forums-10f0c8b3337001743fc310539da43363873dcf0a.tar.xz forums-10f0c8b3337001743fc310539da43363873dcf0a.zip |
[ticket/11957] Change avatars gallery from table to list
PHPBB3-11957
Diffstat (limited to 'phpBB/adm/style/admin.css')
-rw-r--r-- | phpBB/adm/style/admin.css | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index a98bcffe3b..b3f086b6d2 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -1956,6 +1956,35 @@ fieldset.permissions .padding { padding: 0; } +/* Avatars gallery +---------------------------------------- */ +#gallery { + display: block; + margin: 0 -5px; + padding: 0; + overflow: hidden; +} + +#gallery li { + display: block; + float: left; + border: 1px solid #ccc; + border-radius: 2px; + background: #fff; + padding: 5px; + margin: 5px; +} + +#gallery li:hover { + background-color: #eee; +} + +#gallery li label { + display: block; + text-align: center; + padding: 0; +} + /* Classes for additional tasks ---------------------------------------- */ |