Ticket #21598: 21598-20.2.diff
File 21598-20.2.diff, 6.6 KB (added by , 12 years ago) |
---|
-
wp-includes/functions.php
2128 2128 } 2129 2129 2130 2130 .button { 2131 font-family: sans-serif; 2131 display: inline-block; 2132 vertical-align: middle; 2132 2133 text-decoration: none; 2133 font-size: 14px !important; 2134 line-height: 16px; 2135 padding: 6px 12px; 2134 font-size: 12px; 2135 line-height: 1.45em; 2136 margin: 0; 2137 padding: 3px 10px; 2136 2138 cursor: pointer; 2137 border: 1px solid #bbb; 2138 color: #464646; 2139 -webkit-border-radius: 15px; 2140 border-radius: 15px; 2141 -moz-box-sizing: content-box; 2142 -webkit-box-sizing: content-box; 2143 box-sizing: content-box; 2144 background-color: #f5f5f5; 2145 background-image: -ms-linear-gradient(top, #ffffff, #f2f2f2); 2146 background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2); 2147 background-image: -o-linear-gradient(top, #ffffff, #f2f2f2); 2148 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f2f2f2)); 2149 background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2); 2150 background-image: linear-gradient(top, #ffffff, #f2f2f2); 2139 border-width: 1px; 2140 border-style: solid; 2141 -webkit-border-radius: 3px; 2142 border-radius: 3px; 2143 white-space: nowrap; 2144 -webkit-box-sizing: border-box; 2145 -moz-box-sizing: border-box; 2146 box-sizing: border-box; 2147 background: #f3f3f3; 2148 background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#f4f4f4)); 2149 background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4); 2150 background-image: -moz-linear-gradient(top, #fefefe, #f4f4f4); 2151 background-image: -o-linear-gradient(top, #fefefe, #f4f4f4); 2152 background-image: linear-gradient(to bottom, #fefefe, #f4f4f4); 2153 border-color: #bbb; 2154 color: #333; 2155 text-shadow: 0 1px 0 #fff; 2151 2156 } 2152 2157 2153 .button:hover { 2154 color: #000; 2155 border-color: #666; 2158 .button:hover, 2159 .button:focus { 2160 background: #f3f3f3; 2161 background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3)); 2162 background-image: -webkit-linear-gradient(top, #fff, #f3f3f3); 2163 background-image: -moz-linear-gradient(top, #fff, #f3f3f3); 2164 background-image: -ms-linear-gradient(top, #fff, #f3f3f3); 2165 background-image: -o-linear-gradient(top, #fff, #f3f3f3); 2166 background-image: linear-gradient(to bottom, #fff, #f3f3f3); 2167 border-color: #999; 2168 color: #222; 2169 -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.2); 2170 box-shadow: 1px 1px 1px rgba(0,0,0,.2); 2156 2171 } 2157 2172 2158 2173 .button:active { 2159 background-image: -ms-linear-gradient(top, #f2f2f2, #ffffff); 2160 background-image: -moz-linear-gradient(top, #f2f2f2, #ffffff); 2161 background-image: -o-linear-gradient(top, #f2f2f2, #ffffff); 2162 background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#ffffff)); 2163 background-image: -webkit-linear-gradient(top, #f2f2f2, #ffffff); 2164 background-image: linear-gradient(top, #f2f2f2, #ffffff); 2174 outline: none; 2175 background: #eee; 2176 background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#fefefe)); 2177 background-image: -webkit-linear-gradient(top, #f4f4f4, #fefefe); 2178 background-image: -moz-linear-gradient(top, #f4f4f4, #fefefe); 2179 background-image: -ms-linear-gradient(top, #f4f4f4, #fefefe); 2180 background-image: -o-linear-gradient(top, #f4f4f4, #fefefe); 2181 background-image: linear-gradient(to bottom, #f4f4f4, #fefefe); 2182 border-color: #999; 2183 color: #333; 2184 text-shadow: 0 -1px 0 #fff; 2185 -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 2186 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 2165 2187 } 2166 2188 2167 2189 <?php if ( 'rtl' == $text_direction ) : ?> -
wp-admin/css/install.css
71 71 padding: 0; 72 72 } 73 73 74 .submit input,75 .button,76 .button-secondary {77 font-family: sans-serif;78 text-decoration: none;79 font-size: 14px !important;80 line-height: 16px;81 padding: 6px 12px;82 cursor: pointer;83 border: 1px solid #bbb;84 color: #464646;85 -webkit-border-radius: 15px;86 border-radius: 15px;87 -webkit-box-sizing: content-box;88 -moz-box-sizing: content-box;89 box-sizing: content-box;90 background: #f2f2f2;91 background-image: -webkit-gradient(linear, left bottom, left top, from(#ededed), to(#fff));92 background-image: -webkit-linear-gradient(bottom, #ededed, #fff);93 background-image: -moz-linear-gradient(bottom, #ededed, #fff);94 background-image: -o-linear-gradient(bottom, #ededed, #fff);95 background-image: linear-gradient(to top, #ededed, #fff);96 }97 98 .button:hover,99 .button-secondary:hover,100 .submit input:hover {101 color: #000;102 border-color: #666;103 }104 105 .button:active,106 .submit input:active,107 .button-secondary:active {108 background: #eee;109 background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));110 background-image: -webkit-linear-gradient(top, #ededed, #fff);111 background-image: -moz-linear-gradient(top, #ededed, #fff);112 background-image: -o-linear-gradient(top, #ededed, #fff);113 background-image: linear-gradient(to bottom, #ededed, #fff);114 }115 116 74 textarea { 117 75 border: 1px solid #dfdfdf; 118 76 -webkit-border-radius: 3px; -
wp-admin/setup-config.php
96 96 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 97 97 <title><?php _e( 'WordPress › Setup Configuration File' ); ?></title> 98 98 <link rel="stylesheet" href="css/install.css?ver=<?php echo preg_replace( '/[^0-9a-z\.-]/i', '', $wp_version ); ?>" type="text/css" /> 99 <link rel="stylesheet" href="../wp-includes/css/buttons.css?ver=<?php echo preg_replace( '/[^0-9a-z\.-]/i', '', $wp_version ); ?>" type="text/css" /> 99 100 100 101 </head> 101 102 <body<?php if ( is_rtl() ) echo ' class="rtl"'; ?>> -
wp-admin/install.php
58 58 <head> 59 59 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 60 60 <title><?php _e( 'WordPress › Installation' ); ?></title> 61 <?php wp_admin_css( 'install', true ); ?> 61 <?php 62 wp_admin_css( 'install', true ); 63 wp_admin_css( 'buttons', true ); 64 ?> 62 65 </head> 63 66 <body<?php if ( is_rtl() ) echo ' class="rtl"'; ?>> 64 67 <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png?ver=20120216" /></h1>