Changeset 1346
- Timestamp:
- 08/12/08 19:20:59 (3 months ago)
- Files:
-
- trunk/templates/re2008/css/screen.css (modified) (2 diffs)
- trunk/templates/re2008/episode.liquid (modified) (2 diffs)
- trunk/templates/re2008/media/star.png (added)
- trunk/templates/re2008/media/stars-bg.png (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/templates/re2008/css/screen.css
r1328 r1346 47 47 #content .audio p {position:absolute;left:38px;top:1.8em;} 48 48 #content .duration {font-size:.80em;line-height:.85em;} 49 #content .tags { font-size: .80em; margin-top: 0.3em; }49 #content .tags, #content .vote { font-size: .80em; margin-top: 0.3em; } 50 50 #content .tags a { font-weight: bold; color: #fff; } 51 display: inline; } 51 #content #star-rating-block li { display: inline; } 52 #content #star-rating-block a.off { color: #fff } 52 53 #page .player {margin:0.2em 0 1em 1em;} 53 54 #page .player h4 {font-size:.95em;} … … 61 62 #footer li .dtstart {font-size:.85em;} 62 63 #footer .day .listen {font-size:.8em;} 64 65 /*.rating { position: absolute; right: 14px !important; right: 22px; }*/ 66 .rating ul { position: relative; margin: 0px; padding: 0px; width: 80px; height: 16px; list-style: none; background: url("../media/stars-bg.png") no-repeat top right; } 67 .rating ul.rate1 { background-position: -64px; } 68 .rating ul.rate2 { background-position: -48px; } 69 .rating ul.rate3 { background-position: -32px; } 70 .rating ul.rate4 { background-position: -16px; } 71 .rating ul.rate5 { background-position: 0; } 72 .rating ul li { float: left; padding: 0px; margin: 0px; } 73 .rating ul li a { position: absolute; display: block; width: 16px; height: 16px; padding: 0px; z-index: 16; text-indent: -9000px; } 74 .rating ul li a:hover { z-index: 1; left: 0px; background: url("../media/star.png") repeat-x left bottom; } 75 .rating a.one { left: 0px; } 76 .rating a.one:hover { width: 16px; } 77 .rating a.two { left: 16px; } 78 .rating a.two:hover { width: 32px; } 79 .rating a.three { left: 32px; } 80 .rating a.three:hover { width: 48px; } 81 .rating a.four { left: 48px; } 82 .rating a.four:hover { width: 64px; } 83 .rating a.five { left: 64px; } 84 .rating a.five:hover { width: 80px; } trunk/templates/re2008/episode.liquid
r1331 r1346 6 6 <link rel="stylesheet" type="text/css" href="{{theme.url_for_assets}}/css/screen.css" media="screen"> 7 7 <link rel="stylesheet" type="text/css" href="{{theme.url_for_assets}}/css/print.css" media="print"> 8 {{theme.javascript_include_tag}} 8 9 <link rel="alternate" type="application/rss+xml" title="{{episde.show.name}}" href="{{show.url_for_podcast}}"> 9 10 </head> … … 38 39 </div> 39 40 {% endunless %} 41 42 <div class="vote"> 43 {{ episode.vote_tag }} 44 </div> 40 45 41 46 </div>
