diff options
author | plegall <plg@piwigo.org> | 2010-03-22 11:40:18 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-03-22 11:40:18 +0000 |
commit | 2ed2fe4ec0314fc313b2ef3dc12276ba7b6ac8e2 (patch) | |
tree | fabf0c18a1fcb9a313e17607068af185a0ebf74f /themes | |
parent | 7d0c4675f802aa0feb6cbf470b86ad274c737570 (diff) |
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
Diffstat (limited to 'themes')
-rw-r--r-- | themes/default/theme.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/themes/default/theme.css b/themes/default/theme.css index 8651f4f33..390c2aafb 100644 --- a/themes/default/theme.css +++ b/themes/default/theme.css @@ -628,7 +628,9 @@ UL.tagSelection { } UL.tagSelection LI { - display: inline; + display:inline-block; + width:150px!important; + overflow:hidden; white-space: nowrap; } |