Changeset 17755
- Timestamp:
- 04/28/2011 10:04:39 PM (14 years ago)
- Location:
- trunk/wp-content/themes/twentyeleven
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyeleven/inc/theme-options.php
r17754 r17755 293 293 /* Link color */ 294 294 a, 295 .entry-title a:hover { 295 .entry-title a:hover, 296 .widget_twentyeleven_ephemera .comments-link a:hover, 297 section.recent-posts .other-recent-posts a[rel="bookmark"]:hover, 298 section.recent-posts .other-recent-posts .comments-link a:hover { 296 299 color: <?php echo $link_color; ?>; 297 300 } 301 section.recent-posts .other-recent-posts .comments-link a:hover { 302 border-color: <?php echo $link_color; ?>; 303 } 298 304 </style> 299 305 <?php -
trunk/wp-content/themes/twentyeleven/inc/widgets.php
r17738 r17755 85 85 <?php if ( 'link' != get_post_format() ) : ?> 86 86 87 <li class=" entry-title">87 <li class="widget-entry-title"> 88 88 <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a> 89 89 <span class="comments-link"> … … 94 94 <?php else : ?> 95 95 96 <li class=" entry-title">96 <li class="widget-entry-title"> 97 97 <?php 98 98 $link_url = get_permalink(); -
trunk/wp-content/themes/twentyeleven/style.css
r17752 r17755 299 299 body, input, textarea { 300 300 color: #333; 301 font: 15px "Helvetica Neue", Helvetica, Arial, s erif;301 font: 15px "Helvetica Neue", Helvetica, Arial, sans-serif; 302 302 font-weight: 300; 303 303 line-height: 1.625; … … 436 436 /* Links */ 437 437 a { 438 color: #1 B8BE0;438 color: #1b8be0; 439 439 text-decoration: none; 440 440 } … … 446 446 text-decoration: underline; 447 447 } 448 449 448 450 449 /* Assitive text */ … … 492 491 493 492 #access { 494 background: #222; 493 background: #222; /* Show a solid color for older browsers */ 495 494 background: -moz-linear-gradient(#252525, #0a0a0a); 496 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252525), to(#0a0a0a)); 495 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252525), to(#0a0a0a)); /* older webkit syntax */ 497 496 background: -webkit-linear-gradient(#252525, #0a0a0a); 498 497 -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px; … … 555 554 } 556 555 #access li:hover > a { 557 background: #f9f9f9; 556 background: #f9f9f9; /* Show a solid color for older browsers */ 558 557 background: -moz-linear-gradient(#f9f9f9, #e5e5e5); 559 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9f9f9), to(#e5e5e5)); 558 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9f9f9), to(#e5e5e5)); /* Older webkit syntax */ 560 559 background: -webkit-linear-gradient(#f9f9f9, #e5e5e5); 561 560 color: #333; … … 1217 1216 } 1218 1217 section.recent-posts .other-recent-posts a[rel="bookmark"]:hover { 1219 color: #1b8be0;1220 1218 } 1221 1219 section.recent-posts .other-recent-posts .comments-link a, … … 1447 1445 margin: 5px 0 0; 1448 1446 } 1449 section.ephemera .entry-title, 1450 .widget_twentyeleven_ephemera .entry-title { 1447 .widget_twentyeleven_ephemera .widget-entry-title { 1451 1448 font-size: 15px; 1452 1449 font-weight: bold; 1453 1450 padding: 0; 1454 1451 } 1455 section.ephemera .entry-title a,1456 1452 .widget_twentyeleven_ephemera .entry-title a { 1457 color: #1b8be0; 1458 } 1459 section.ephemera .entry-title a:hover, 1453 } 1460 1454 .widget_twentyeleven_ephemera .entry-title a:hover { 1461 color: #ff4b33; 1462 } 1463 section.ephemera .entry-title .comments-link a, 1464 .widget_twentyeleven_ephemera .entry-title .comments-link a, 1465 .widget_twentyeleven_ephemera .entry-title .comments-link { 1455 } 1456 .widget_twentyeleven_ephemera .comments-link a { 1466 1457 color: #666; 1467 1458 display: block; … … 1473 1464 section.ephemera .entry-title .comments-link a:hover, 1474 1465 .widget_twentyeleven_ephemera .entry-title .comments-link a:hover { 1475 color: #1b8be0;1476 1466 } 1477 1467 section.ephemera .entry-title a span {
Note: See TracChangeset
for help on using the changeset viewer.