diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-07-21 08:54:39 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-07-21 08:54:39 +0000 |
commit | 29136b0fe2cbc7c1ba524f3483701f1a257ecb7c (patch) | |
tree | 71da3c441890cb6811dd94d576ec1b0103eb56f4 /stylesheet.css | |
parent | c7cd20588324b852123702bdbc3dafdd973db4c8 (diff) |
issue30, fixed wickled lines when images have different lines
git-svn-id: file:///var/lib/svn/phpfspot/trunk@230 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'stylesheet.css')
-rw-r--r-- | stylesheet.css | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/stylesheet.css b/stylesheet.css index 610e7aa..df2f9d7 100644 --- a/stylesheet.css +++ b/stylesheet.css @@ -123,19 +123,36 @@ a.thumblink:hover { #matrix,#single {
padding: 10px;
+ display: table;
+ margin-left: 10px;
+ margin-right: 10px;
+ table-layout: fixed;
+ border: hidden;
+ border-spacing: 10px;
+ border-collapse: separate;
}
-td.thumb {
- padding: 5px;
- text-align: center;
+table.matrix {
+ padding: 10px;
+ display: table;
+ margin-left: 10px;
+ margin-right: 10px;
+ table-layout: fixed;
+ border-style: hidden;
+ border-spacing: 10px;
+ border-collapse: separate;
}
-#inner {
- padding: 10px;
+td.thumb {
+ text-align: center;
+ display: table-cell;
+ vertical-align: top;
-moz-border-radius: 3px;
border-radius: 3px;
border: dashed 1px #888888;
+ margin: 5px;
background-color: #eeeeee;
+ padding: 10px;
}
#photo_details {
|