Ticket #17713: 17713.diff
| File 17713.diff, 2.6 KB (added by zeo, 2 years ago) |
|---|
-
wp-content/plugins/hello.php
69 69 #dolly { 70 70 float: $x; 71 71 padding-$x: 15px; 72 padding-top: 5px; 72 padding-top: 5px; 73 73 margin: 0; 74 74 font-size: 11px; 75 75 } -
wp-content/themes/twentyeleven/rtl.css
85 85 margin: 0 2.5em 1.625em 0; 86 86 } 87 87 .ltr ul, ol { 88 margin: 0 0 1.625em 2.5em; 88 margin: 0 0 1.625em 2.5em; 89 89 } 90 90 blockquote { 91 91 font-family: Arial, sans-serif; -
wp-content/themes/twentyeleven/colors/dark.css
322 322 323 323 /* Featured Slider */ 324 324 .featured-posts { 325 border-color: #222; 325 border-color: #222; 326 326 } 327 327 .featured-posts section.featured-post { 328 328 background: #000; … … 594 594 /* Comments */ 595 595 .commentlist > li.comment { 596 596 } 597 597 598 598 /* Post author highlighting */ 599 599 .commentlist > li.bypostauthor { 600 600 color: #333; … … 615 615 .commentlist .children > li.bypostauthor > article .comment-meta { 616 616 color: #959595; 617 617 } 618 } 619 No newline at end of file 618 } -
wp-content/themes/twentyeleven/inc/theme-options.php
165 165 'theme_layout' => 'content-sidebar', 166 166 ); 167 167 168 if ( is_rtl() ) 168 if ( is_rtl() ) 169 169 $default_theme_options['theme_layout'] = 'sidebar-content'; 170 170 171 171 return apply_filters( 'twentyeleven_default_theme_options', $default_theme_options ); … … 405 405 406 406 return array_merge( $existing_classes, $classes ); 407 407 } 408 add_filter( 'body_class', 'twentyeleven_layout_classes' ); 409 No newline at end of file 408 add_filter( 'body_class', 'twentyeleven_layout_classes' ); -
wp-admin/options-general.php
183 183 <br /> 184 184 <?php 185 185 $allowed_zones = timezone_identifiers_list(); 186 186 187 187 if ( in_array( $tzstring, $allowed_zones) ) { 188 188 $found = false; 189 189 $date_time_zone_selected = new DateTimeZone($tzstring);