diff options
author | rvelices <rv-github@modusoptimus.com> | 2013-12-29 21:23:57 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2013-12-29 21:23:57 +0000 |
commit | 8c6f57e5f651395a984a0094338d2b913175aeec (patch) | |
tree | 04235e145bc53972f935c725bc8c8ddfe6ef210c /themes/smartpocket/theme.css | |
parent | bf9641a17b8c47f0555bca3f27be81925315e6e9 (diff) |
smart pocket new thumbnail display
git-svn-id: http://piwigo.org/svn/trunk@26349 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | themes/smartpocket/theme.css | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/themes/smartpocket/theme.css b/themes/smartpocket/theme.css index 75a26b387..25d968a4e 100644 --- a/themes/smartpocket/theme.css +++ b/themes/smartpocket/theme.css @@ -16,11 +16,18 @@ .ui-content { overflow: hidden; }
.ui-field-contain, .ui-br { padding: 5px; border: 0 !important; }
-.thumbnails { list-style: none; padding: 0; margin: 0; }
+.thumbnails { list-style: none; padding: 0}
.thumbnails:after { clear: both; content: "."; display: block; height: 0; visibility: hidden; }
-.thumbnails li { float: left; }
-.thumbnails li a { display: block; margin: 5px; }
-.thumbnails li img { display: block; width: 100%; height: auto; }
+.thumbnails li {
+ float: left;
+ position: relative;
+ overflow: hidden;
+ display: inline;
+}
+.thumbnails li a {
+ position: absolute;
+}
+
#more_link {
color: #FFFFFF;
display: table-cell;
|