diff options
| author | Andreas Brachold <vdr07@deltab.de> | 2008-01-31 21:21:00 +0000 |
|---|---|---|
| committer | Andreas Brachold <vdr07@deltab.de> | 2008-01-31 21:21:00 +0000 |
| commit | 58d289b2d45e0a632c9833708889f153c13cd7c1 (patch) | |
| tree | 957864bd3e836cd01c533b64c71beea90b38c5b9 /skins | |
| parent | 83331f086d9ed983d0cfbced83abee79a461e8a8 (diff) | |
| download | xxv-58d289b2d45e0a632c9833708889f153c13cd7c1.tar.gz xxv-58d289b2d45e0a632c9833708889f153c13cd7c1.tar.bz2 | |
* mllist/stone: Fix css layout
Diffstat (limited to 'skins')
| -rw-r--r-- | skins/blue/style.css | 10 | ||||
| -rw-r--r-- | skins/lcars/style.css | 9 | ||||
| -rw-r--r-- | skins/snow/style.css | 9 | ||||
| -rw-r--r-- | skins/stone/mldisplay.tmpl | 2 | ||||
| -rw-r--r-- | skins/stone/mllist.tmpl | 16 | ||||
| -rw-r--r-- | skins/stone/style.css | 9 | ||||
| -rw-r--r-- | skins/stone_flat/mldisplay.tmpl | 2 |
7 files changed, 22 insertions, 35 deletions
diff --git a/skins/blue/style.css b/skins/blue/style.css index a60df44..2d583e4 100644 --- a/skins/blue/style.css +++ b/skins/blue/style.css @@ -76,7 +76,7 @@ margin:0; padding:0; } -img.recording,img.recorddetails { +img.recording,img.recorddetails,img.media { width:160px; } @@ -100,15 +100,13 @@ img.cover { width:120px; } -img.media { -height:180px; -} - div.media { -width:190px; +width:200px; +height:250px; vertical-align:middle; text-align:center; display:table-cell; +overflow:hidden; } img.actor { diff --git a/skins/lcars/style.css b/skins/lcars/style.css index ee08543..4ded372 100644 --- a/skins/lcars/style.css +++ b/skins/lcars/style.css @@ -84,7 +84,7 @@ margin:0; padding:0; } -img.recording,img.recorddetails { +img.recording,img.recorddetails,img.media { width:160px; } @@ -108,12 +108,9 @@ img.cover { width:120px; } -img.media { -height:180px; -} - div.media { -width:190px; +width:200px; +height:250px; vertical-align:middle; text-align:center; display:table-cell; diff --git a/skins/snow/style.css b/skins/snow/style.css index 3b80a4f..b762957 100644 --- a/skins/snow/style.css +++ b/skins/snow/style.css @@ -76,7 +76,7 @@ margin:0; padding:0; } -img.recording,img.recorddetails { +img.recording,img.recorddetails,img.media { width:160px; } @@ -100,12 +100,9 @@ img.cover { width:130px; } -img.media { -height:180px; -} - div.media { -width:190px; +width:180px; +height:250px; vertical-align:middle; text-align:center; display:table-cell; diff --git a/skins/stone/mldisplay.tmpl b/skins/stone/mldisplay.tmpl index acc6ddf..3a95a6b 100644 --- a/skins/stone/mldisplay.tmpl +++ b/skins/stone/mldisplay.tmpl @@ -50,7 +50,7 @@ seen = f.25; <img class="media" src='<?% IF param.usecache == "y" %?>?cmd=mlcache&__source=<?% END %?><?% imgurl %?>'> </div> <div> - <table summary="" width="100%"> + <table summary=""> <tr><th width="10%"> </th><th width="40%"> </th> <th width="10%"> </th><th width="40%"> </th></tr> diff --git a/skins/stone/mllist.tmpl b/skins/stone/mllist.tmpl index 4ec73ab..809914f 100644 --- a/skins/stone/mllist.tmpl +++ b/skins/stone/mllist.tmpl @@ -17,9 +17,7 @@ <?% ######################################################################## %?> <?% BLOCK item %?> <?% IF value %?> - <a href="?cmd=mlsearch&__search&__selfields=<?% topic %?>&__searchitem=<?% value %?>"> - <?% value %?> - </a> +<a href="?cmd=mlsearch&__search&__selfields=<?% topic %?>&__searchitem=<?% value %?>"><?% value %?></a> <?% END %?> <?% END %?> <?% ######################################################################## %?> @@ -40,9 +38,9 @@ <tr> <td class="fieldtext"> <div class="media"> - <a href="?cmd=mldisplay&data=<?% id %?>" class="fieldinline"> - <img class="media" src='<?% IF param.usecache == "y" %?>?cmd=mlcache&__source=<?% END %?><?% imgurl %?>'> - </a> + <a href="?cmd=mldisplay&data=<?% id %?>"> + <img class="media" src='<?% IF param.usecache == "y" %?>?cmd=mlcache&__source=<?% END %?><?% imgurl %?>' /> + </a> </div> </td> </tr> @@ -59,9 +57,9 @@ <tr> <td class="fieldtext"> <div class="recordingdescription"> - <a href="?cmd=mldisplay&data=<?% id %?>" class="fieldinline"> - <?% chop(description,35,3) %?> - </a> + <a href="?cmd=mldisplay&data=<?% id %?>" class="fieldinline"> + <?% chop(description,35,3) %?> + </a> </div> </td> </tr> diff --git a/skins/stone/style.css b/skins/stone/style.css index 145855e..1859883 100644 --- a/skins/stone/style.css +++ b/skins/stone/style.css @@ -78,7 +78,7 @@ margin:0; padding:0; } -img.recording,img.recorddetails { +img.recording,img.recorddetails,img.media { width:160px; } @@ -102,12 +102,9 @@ img.cover { width:110px; } -img.media { -height:180px; -} - div.media { -width:190px; +width:200px; +height:250px; vertical-align:middle; text-align:center; display:table-cell; diff --git a/skins/stone_flat/mldisplay.tmpl b/skins/stone_flat/mldisplay.tmpl index d05f9ff..c81e0ad 100644 --- a/skins/stone_flat/mldisplay.tmpl +++ b/skins/stone_flat/mldisplay.tmpl @@ -50,7 +50,7 @@ seen = f.25; <img class="media" src='<?% IF param.usecache == "y" %?>?cmd=mlcache&__source=<?% END %?><?% imgurl %?>'> </div> <div> - <table summary="" width="100%"> + <table summary=""> <tr><th width="10%"> </th><th width="40%"> </th> <th width="10%"> </th><th width="40%"> </th></tr> |
