Changeset 5658
- Timestamp:
- 03/27/08 21:29:24 (6 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
interface/iphone/tag/index.php (modified) (1 diff)
-
script/iphone/iphone.js (modified) (1 diff)
-
style/iphone/iphone.css (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/iphone/tag/index.php
r5656 r5658 50 50 $itemsView .= '<li class="pagination">'.CRLF; 51 51 if(isset($paging['prev'])){ 52 $itemsView .= '<a href="' .$blogURL . '/ archive/' . $period. '?page=' . $paging['prev'] . '" class="previous">Page ' . $paging['prev'] . '</a>'.CRLF;52 $itemsView .= '<a href="' .$blogURL . '/tag/' . $suri['id'] . '?page=' . $paging['prev'] . '" class="previous">Page ' . $paging['prev'] . '</a>'.CRLF; 53 53 } 54 54 if (isset($paging['next'])) { 55 $itemsView .= '<a href="' .$blogURL . '/ archive/' . $period. '?page=' . $paging['next'] . '" class="next">Page ' . $paging['next'] . '</a>'.CRLF;55 $itemsView .= '<a href="' .$blogURL . '/tag/' . $suri['id'] . '?page=' . $paging['next'] . '" class="next">Page ' . $paging['next'] . '</a>'.CRLF; 56 56 } 57 57 if ($suri['page'] > 1 && $suri['page'] != $paging['pages']) { -
trunk/script/iphone/iphone.js
r5656 r5658 284 284 285 285 toPage.setAttribute("selected", "true"); 286 scrollTo(0, 0);286 scrollTo(0, 1); 287 287 clearInterval(checkTimer); 288 288 -
trunk/style/iphone/iphone.css
r5657 r5658 2 2 body { 3 3 margin: 0; 4 font-family: AppleGothic, "Lucida Grande", Helvetica,Verdana, Arial sans-serif;4 font-family:Helvetica, AppleGothic, "Lucida Grande", Verdana, Arial sans-serif; 5 5 background: #FFFFFF; 6 6 color: #000000; … … 305 305 min-height: 417px; 306 306 z-index: 2; 307 background:url(image/top_color_line.png) repeat-x rgba(0, 0, 0, 0.8);308 307 padding: 0; 309 308 text-align: right; 309 background-color: rgba(0, 0, 0, 0.8); 310 310 } 311 311 … … 314 314 -webkit-box-sizing: border-box; 315 315 width: 100%; 316 margin: 0;316 margin: 1px 0 0 0; 317 317 border: none; 318 margin-top:1px;319 318 padding: 10px 6px; 320 background: url(image/toolbar2.png) #191919 repeat-x; 319 background-color: #191919 !important; 320 background-image: url(image/top_color_line.png), url(image/toolbar2.png) !important; 321 background-repeat: repeat-x, repeat-x; 322 background-position: left top, left top; 323 321 324 } 322 325
