Ticket #24832: 24832.12.diff
| File 24832.12.diff, 7.5 KB (added by , 13 years ago) |
|---|
-
wp-admin/about.php
include( ABSPATH . 'wp-admin/admin-header.php' ); 37 37 <h3><?php _e( 'Colorful New Theme' ); ?></h3> 38 38 39 39 <div class="feature-section images-stagger-right"> 40 <img alt="" src="<?php echo esc_url( admin_url( 'images/screenshots/about-twenty-twelve.png' ) ); ?>" class="image-66" />40 <img alt="" src="<?php echo is_ssl() ? 'https://' : '//s.'; ?>wordpress.org/images/core/3.6/theme.png" class="image-66" /> 41 41 <h4><?php _e( 'Introducing Twenty Thirteen' ); ?></h4> 42 42 <p><?php printf( __( "The new default theme puts focus on your content with a colorful, single-column design made for media-rich blogging." ) ); ?></p> 43 43 <p><?php _e( 'Inspired by modern art, Twenty Thirteen features quirky details, beautiful typography, and bold, high-contrast colors — all with a flexible layout that looks great on any device, big or small.' ); ?></p> … … include( ABSPATH . 'wp-admin/admin-header.php' ); 48 48 <h3><?php _e( 'Write with Confidence' ); ?></h3> 49 49 50 50 <div class="feature-section images-stagger-right"> 51 <img alt="" src="<?php echo esc_url( admin_url( 'images/screenshots/about-retina.png' ) ); ?>" class="image-66" />51 <img alt="" src="<?php echo is_ssl() ? 'https://' : '//s.'; ?>wordpress.org/images/core/3.6/revisions.png" class="image-66" /> 52 52 <h4><?php _e( 'Explore Revisions' ); ?></h4> 53 53 <p></p> 54 54 <p><?php _e( 'From the first word you write, WordPress saves every change. Each revision is always at your fingertips. Text is highlighted as you scroll through revisions at lightning speed, so you can see what changes have been made along the way.' ); ?></p> … … include( ABSPATH . 'wp-admin/admin-header.php' ); 75 75 <h3><?php _e( 'Support for Audio and Video' ); ?></h3> 76 76 77 77 <div class="feature-section images-stagger-right"> 78 <img alt="" src="<?php echo esc_url( admin_url( 'images/screenshots/about-color-picker.png' ) ); ?>" class="image-30" /> 78 <div class="video image-66"><?php echo wp_video_shortcode( 79 array( 80 'm4v' => (is_ssl() ? 'https://' : 'http://s.' ) . 'wordpress.org/images/core/3.6/video.m4v', 81 'ogv' => (is_ssl() ? 'https://' : 'http://s.' ) . 'wordpress.org/images/core/3.6/video.ogv', 82 'width' => 625, 83 'height' => 360, 84 ) 85 ); ?></div> 79 86 <h4><?php _e( 'New Media Player' ); ?></h4> 80 87 <p><?php _e( 'Share your audio and video with the new built-in HTML5 media player. Upload files using the media manager and embed them in your posts.' ); ?></p> 81 88 -
wp-admin/css/wp-admin-rtl.css
h2 .nav-tab { 1725 1725 margin-left: 0; 1726 1726 } 1727 1727 1728 .about-wrap .feature-section img { 1728 .about-wrap .feature-section img, 1729 .about-wrap .feature-section .video { 1729 1730 margin: 0 0 10px 0.7%; 1730 1731 } 1731 1732 1732 .about-wrap .feature-section.images-stagger-right img { 1733 .about-wrap .feature-section.images-stagger-right img, 1734 .about-wrap .feature-section.images-stagger-right .video { 1733 1735 float: left; 1734 1736 margin: 0 2em 12px 5px; 1735 1737 } 1736 1738 1737 .about-wrap .feature-section.images-stagger-left img { 1739 .about-wrap .feature-section.images-stagger-left img, 1740 .about-wrap .feature-section.images-stagger-left .video { 1738 1741 float: right; 1739 1742 margin: 0 5px 12px 2em; 1740 1743 } … … h2 .nav-tab { 1746 1749 margin-left: 10px; 1747 1750 } 1748 1751 1752 @media only screen and (max-width: 900px) { 1753 .about-wrap .feature-section.images-stagger-right .video.image-66 { 1754 margin-right: 3px; 1755 } 1756 1757 .about-wrap .feature-section.images-stagger-left .video.image-66 { 1758 margin-left: 3px; 1759 } 1760 } 1761 1749 1762 @media only screen and (max-width: 768px) { 1750 .about-wrap .feature-section img.image-66 {1763 .about-wrap .feature-section .image-66 { 1751 1764 float: none; 1752 1765 } 1753 1766 1754 .about-wrap .feature-section.images-stagger-right img.image-66 {1767 .about-wrap .feature-section.images-stagger-right .image-66 { 1755 1768 margin-right: 3px; 1756 1769 } 1757 1770 1758 .about-wrap .feature-section.images-stagger-left img.image-66 {1771 .about-wrap .feature-section.images-stagger-left .image-66 { 1759 1772 margin-left: 3px; 1760 1773 } 1761 1774 } -
wp-admin/css/wp-admin.css
h2 .nav-tab { 5871 5871 5872 5872 /* Changelog / Update screen */ 5873 5873 5874 .about-wrap .feature-section img { 5874 .about-wrap .feature-section img, 5875 .about-wrap .feature-section .video { 5875 5876 border: none; 5876 5877 margin: 0 1.94% 10px 0; 5877 5878 -webkit-border-radius: 3px; 5878 5879 border-radius: 3px; 5879 5880 } 5880 5881 5881 .about-wrap .feature-section.three-col img { 5882 .about-wrap .feature-section.three-col img, 5883 .about-wrap .feature-section.three-col .video { 5882 5884 margin: 0.5em 0 0.5em 5px; 5883 5885 max-width: 100%; 5884 5886 float: none; 5885 5887 } 5886 5888 5887 .ie8 .about-wrap .feature-section.three-col img { 5889 .ie8 .about-wrap .feature-section.three-col img, 5890 .ie8 .about-wrap .feature-section.three-col .video { 5888 5891 margin-left: 0; 5889 5892 } 5890 5893 5891 .about-wrap .feature-section.images-stagger-right img { 5894 .about-wrap .feature-section.images-stagger-right img, 5895 .about-wrap .feature-section.images-stagger-right .video { 5892 5896 float: right; 5893 5897 margin: 0 5px 12px 2em; 5894 5898 } 5895 5899 5896 .about-wrap .feature-section.images-stagger-left img { 5900 .about-wrap .feature-section.images-stagger-left img, 5901 .about-wrap .feature-section.images-stagger-left .video { 5897 5902 float: left; 5898 5903 margin: 0 2em 12px 5px; 5899 5904 } 5900 5905 5901 .about-wrap .feature-section img.image-100 {5906 .about-wrap .feature-section .image-100 { 5902 5907 margin: 0 0 2em 0; 5903 5908 width: 100%; 5904 5909 } 5905 5910 5906 .about-wrap .feature-section img.image-66 {5911 .about-wrap .feature-section .image-66 { 5907 5912 width: 65%; 5908 5913 } 5909 5914 5910 .about-wrap .feature-section img.image-50 { 5915 .about-wrap .feature-section .image-66.video { 5916 max-width: 600px; 5917 } 5918 5919 .about-wrap .feature-section .image-50 { 5911 5920 max-width: 50%; 5912 5921 } 5913 5922 5914 .about-wrap .feature-section img.image-30 {5923 .about-wrap .feature-section .image-30 { 5915 5924 max-width: 31.2381%; 5916 5925 } 5917 5926 … … h2 .nav-tab { 5920 5929 border-style: solid; 5921 5930 } 5922 5931 5923 .about-wrap .images-stagger-right img.image-30:nth-child(2) {5932 .about-wrap .images-stagger-right .image-30:nth-child(2) { 5924 5933 margin-left: 1em; 5925 5934 } 5926 5935 … … h2 .nav-tab { 5952 5961 text-align: center; 5953 5962 } 5954 5963 5955 .about-wrap .three-col-images img { 5964 .about-wrap .three-col-images img, 5965 .about-wrap .three-col-images .video { 5956 5966 margin: 0 0 10px; 5957 5967 } 5958 5968 … … h2 .nav-tab { 5975 5985 5976 5986 @media only screen and (max-width: 900px) { 5977 5987 .about-wrap .feature-section.images-stagger-left img, 5978 .about-wrap .feature-section.images-stagger-right img { 5988 .about-wrap .feature-section.images-stagger-right img, 5989 .about-wrap .feature-section.images-stagger-left .video, 5990 .about-wrap .feature-section.images-stagger-right .video { 5979 5991 clear: both; 5980 5992 } 5993 5994 .about-wrap .feature-section .video.image-66 { 5995 float: none; 5996 width: 98%; 5997 max-width: 98%; 5998 } 5999 6000 .about-wrap .feature-section.images-stagger-right .video.image-66 { 6001 margin-left: 3px; 6002 } 6003 6004 .about-wrap .feature-section.images-stagger-left .video.image-66 { 6005 margin-right: 3px; 6006 } 5981 6007 } 5982 6008 5983 6009 @media only screen and (max-width: 768px) { 5984 .about-wrap .feature-section img.image-66 {6010 .about-wrap .feature-section .image-66 { 5985 6011 float: none; 5986 6012 width: 98%; 5987 6013 max-width: 98%; 5988 6014 } 5989 6015 5990 .about-wrap .feature-section.images-stagger-right img.image-66 {6016 .about-wrap .feature-section.images-stagger-right .image-66 { 5991 6017 margin-left: 3px; 5992 6018 } 5993 6019 5994 .about-wrap .feature-section.images-stagger-left img.image-66 {6020 .about-wrap .feature-section.images-stagger-left .image-66 { 5995 6021 margin-right: 3px; 5996 6022 } 5997 6023 }