feature 1529: display tags in columns for search.php or admin/tags.

Needs to be verified on Internet Explorer, even if the display:inline-block
method is already used for thumbnails display.

git-svn-id: http://piwigo.org/svn/trunk@5255 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall 2010-03-22 11:40:18 +00:00
commit 2ed2fe4ec0
2 changed files with 6 additions and 3 deletions

View file

@ -423,11 +423,12 @@ UL.tagSelection {
} }
UL.tagSelection LI { UL.tagSelection LI {
display: inline; display:inline-block;
width:150px!important;
overflow:hidden;
white-space: nowrap; white-space: nowrap;
} }
/* jQuery tooltips */ /* jQuery tooltips */
.cluetip-default #cluetip-outer { .cluetip-default #cluetip-outer {
position: relative; position: relative;

View file

@ -628,7 +628,9 @@ UL.tagSelection {
} }
UL.tagSelection LI { UL.tagSelection LI {
display: inline; display:inline-block;
width:150px!important;
overflow:hidden;
white-space: nowrap; white-space: nowrap;
} }