1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-17 22:11:26 +02:00

[ticket/11957] Change avatars gallery from table to list

PHPBB3-11957
This commit is contained in:
Vjacheslav Trushkin
2013-10-26 10:12:12 +03:00
parent 365d07ff6c
commit 10f0c8b333
2 changed files with 37 additions and 12 deletions

View File

@@ -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
---------------------------------------- */