Changeset 26299
- Timestamp:
- 11/21/2013 12:24:23 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r26294 r26299 2195 2195 <style type="text/css"> 2196 2196 html { 2197 background: # f9f9f9;2197 background: #eee; 2198 2198 } 2199 2199 body { 2200 2200 background: #fff; 2201 2201 color: #333; 2202 font-family: sans-serif;2202 font-family: "Open Sans", sans-serif; 2203 2203 margin: 2em auto; 2204 2204 padding: 1em 2em; 2205 -webkit-border-radius: 3px;2206 border-radius: 3px;2207 border: 1px solid #dfdfdf;2208 2205 max-width: 700px; 2206 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13); 2207 box-shadow: 0 1px 3px rgba(0,0,0,0.13); 2209 2208 } 2210 2209 h1 { … … 2212 2211 clear: both; 2213 2212 color: #666; 2214 font: 24px Georgia, "Times New Roman", Times,serif;2213 font: 24px "Open Sans", sans-serif; 2215 2214 margin: 30px 0 0 0; 2216 2215 padding: 0; … … 2240 2239 } 2241 2240 .button { 2241 background: #f7f7f7; 2242 border: 1px solid #cccccc; 2243 color: #555; 2242 2244 display: inline-block; 2243 2245 text-decoration: none; 2244 font-size: 1 4px;2245 line-height: 2 3px;2246 height: 2 4px;2246 font-size: 13px; 2247 line-height: 26px; 2248 height: 28px; 2247 2249 margin: 0; 2248 2250 padding: 0 10px 1px; 2249 2251 cursor: pointer; 2250 border-width: 1px;2251 border-style: solid;2252 2252 -webkit-border-radius: 3px; 2253 -webkit-appearance: none; 2253 2254 border-radius: 3px; 2254 2255 white-space: nowrap; … … 2256 2257 -moz-box-sizing: border-box; 2257 2258 box-sizing: border-box; 2258 background: #f3f3f3; 2259 background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#f4f4f4)); 2260 background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4); 2261 background-image: -moz-linear-gradient(top, #fefefe, #f4f4f4); 2262 background-image: -o-linear-gradient(top, #fefefe, #f4f4f4); 2263 background-image: linear-gradient(to bottom, #fefefe, #f4f4f4); 2264 border-color: #bbb; 2265 color: #333; 2266 text-shadow: 0 1px 0 #fff; 2259 2260 -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08); 2261 box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08); 2262 vertical-align: top; 2267 2263 } 2268 2264 … … 2275 2271 .button:hover, 2276 2272 .button:focus { 2277 background: #f3f3f3; 2278 background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3)); 2279 background-image: -webkit-linear-gradient(top, #fff, #f3f3f3); 2280 background-image: -moz-linear-gradient(top, #fff, #f3f3f3); 2281 background-image: -ms-linear-gradient(top, #fff, #f3f3f3); 2282 background-image: -o-linear-gradient(top, #fff, #f3f3f3); 2283 background-image: linear-gradient(to bottom, #fff, #f3f3f3); 2273 background: #fafafa; 2284 2274 border-color: #999; 2285 2275 color: #222; … … 2292 2282 2293 2283 .button:active { 2294 outline: none;2295 2284 background: #eee; 2296 background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#fefefe));2297 background-image: -webkit-linear-gradient(top, #f4f4f4, #fefefe);2298 background-image: -moz-linear-gradient(top, #f4f4f4, #fefefe);2299 background-image: -ms-linear-gradient(top, #f4f4f4, #fefefe);2300 background-image: -o-linear-gradient(top, #f4f4f4, #fefefe);2301 background-image: linear-gradient(to bottom, #f4f4f4, #fefefe);2302 2285 border-color: #999; 2303 2286 color: #333; 2304 text-shadow: 0 -1px 0 #fff;2305 2287 -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 2306 2288 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
Note: See TracChangeset
for help on using the changeset viewer.