Ticket #20579: 20579.4-refresh.diff
File 20579.4-refresh.diff, 10.5 KB (added by , 12 years ago) |
---|
-
wp-content/themes/twentyten/style.css
312 312 font-size: smaller; 313 313 } 314 314 input[type="text"], 315 input[type="password"], 316 input[type="date"], 317 input[type="datetime"], 318 input[type="datetime-local"], 319 input[type="email"], 320 input[type="month"], 321 input[type="number"], 322 input[type="search"], 323 input[type="tel"], 324 input[type="time"], 325 input[type="url"], 326 input[type="week"], 315 327 textarea { 316 328 background: #f9f9f9; 317 329 border: 1px solid #ccc; … … 320 332 -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1); 321 333 padding: 2px; 322 334 } 335 input[type="search"] { 336 -webkit-appearance: textfield; 337 } 338 input[type="search"]::-webkit-search-decoration { 339 display: none; 340 } 323 341 a:link { 324 342 color: #0066cc; 325 343 } -
wp-content/themes/twentytwelve/style.css
271 271 /* Form fields */ 272 272 input[type="text"], 273 273 input[type="password"], 274 input[type="date"], 275 input[type="datetime"], 276 input[type="datetime-local"], 274 277 input[type="email"], 278 input[type="month"], 279 input[type="number"], 280 input[type="search"], 281 input[type="tel"], 282 input[type="time"], 275 283 input[type="url"], 284 input[type="week"], 276 285 textarea { 277 286 padding: 6px; 278 287 padding: 0.428571429rem; … … 280 289 border: 1px solid #ccc; 281 290 border-radius: 3px; 282 291 } 292 input[type="search"] { 293 -webkit-appearance: textfield; 294 } 295 input[type="search"]::-webkit-search-decoration { 296 display: none; 297 } 283 298 284 299 /* Responsive images */ 285 300 .entry-content img, … … 1262 1277 line-height: 1.714285714; 1263 1278 } 1264 1279 #respond form input[type="text"], 1280 #respond form input[type="password"], 1281 #respond form input[type="date"], 1282 #respond form input[type="datetime"], 1283 #respond form input[type="datetime-local"], 1284 #respond form input[type="email"], 1285 #respond form input[type="month"], 1286 #respond form input[type="number"], 1287 #respond form input[type="search"], 1288 #respond form input[type="tel"], 1289 #respond form input[type="time"], 1290 #respond form input[type="url"], 1291 #respond form input[type="week"], 1265 1292 #respond form textarea { 1266 1293 -moz-box-sizing: border-box; 1267 1294 box-sizing: border-box; … … 1509 1536 font-size: 22px; 1510 1537 font-size: 1.571428571rem; 1511 1538 } 1512 #respond form input[type="text"] { 1539 #respond form input[type="text"], 1540 #respond form input[type="password"], 1541 #respond form input[type="date"], 1542 #respond form input[type="datetime"], 1543 #respond form input[type="datetime-local"], 1544 #respond form input[type="email"], 1545 #respond form input[type="month"], 1546 #respond form input[type="number"], 1547 #respond form input[type="search"], 1548 #respond form input[type="tel"], 1549 #respond form input[type="time"], 1550 #respond form input[type="url"], 1551 #respond form input[type="week"] { 1513 1552 width: 46.333333333%; 1514 1553 } 1515 1554 #respond form textarea.blog-textarea { -
wp-content/themes/twentytwelve/editor-style.css
191 191 sub { 192 192 bottom: -0.25em; 193 193 } 194 input[type="text"] { 194 input[type="text"], 195 input[type="password"], 196 input[type="date"], 197 input[type="datetime"], 198 input[type="datetime-local"], 199 input[type="email"], 200 input[type="month"], 201 input[type="number"], 202 input[type="search"], 203 input[type="tel"], 204 input[type="time"], 205 input[type="url"], 206 input[type="week"] { 195 207 border: 1px solid #ccc; 196 208 border-radius: 3px; 197 209 font-family: inherit; -
wp-content/themes/twentyeleven/style.css
436 436 } 437 437 438 438 /* Forms */ 439 input[type=text], 440 input[type=password], 439 input[type="text"], 440 input[type="password"], 441 input[type="date"], 442 input[type="datetime"], 443 input[type="datetime-local"], 444 input[type="email"], 445 input[type="month"], 446 input[type="number"], 447 input[type="search"], 448 input[type="tel"], 449 input[type="time"], 450 input[type="url"], 451 input[type="week"], 441 452 textarea { 442 453 background: #fafafa; 443 454 -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); … … 446 457 border: 1px solid #ddd; 447 458 color: #888; 448 459 } 449 input[type=text]:focus, 460 input[type="text"]:focus, 461 input[type="password"]:focus, 462 input[type="date"]:focus, 463 input[type="datetime"]:focus, 464 input[type="datetime-local"]:focus, 465 input[type="email"]:focus, 466 input[type="month"]:focus, 467 input[type="number"]:focus, 468 input[type="search"]:focus, 469 input[type="tel"]:focus, 470 input[type="time"]:focus, 471 input[type="url"]:focus, 472 input[type="week"]:focus, 450 473 textarea:focus { 451 474 color: #373737; 452 475 } … … 454 477 padding-left: 3px; 455 478 width: 98%; 456 479 } 457 input[type=text] { 480 input[type="text"], 481 input[type="password"], 482 input[type="date"], 483 input[type="datetime"], 484 input[type="datetime-local"], 485 input[type="email"], 486 input[type="month"], 487 input[type="number"], 488 input[type="search"], 489 input[type="tel"], 490 input[type="time"], 491 input[type="url"], 492 input[type="week"] { 458 493 padding: 3px; 459 494 } 495 input[type="search"] { 496 -webkit-appearance: textfield; 497 } 498 input[type="search"]::-webkit-search-decoration { 499 display: none; 500 } 460 501 input#s { 461 502 background: url(images/search.png) no-repeat 5px 6px; 462 503 -moz-border-radius: 2px; … … 2081 2122 width: 68.9%; 2082 2123 } 2083 2124 #respond input[type="text"], 2125 #respond input[type="password"], 2126 #respond input[type="date"], 2127 #respond input[type="datetime"], 2128 #respond input[type="datetime-local"], 2129 #respond input[type="email"], 2130 #respond input[type="month"], 2131 #respond input[type="number"], 2132 #respond input[type="search"], 2133 #respond input[type="tel"], 2134 #respond input[type="time"], 2135 #respond input[type="url"], 2136 #respond input[type="week"], 2084 2137 #respond textarea { 2085 2138 background: #fff; 2086 2139 border: 4px solid #eee; … … 2118 2171 z-index: 1; 2119 2172 } 2120 2173 #respond input[type="text"]:focus, 2174 #respond input[type="password"]:focus, 2175 #respond input[type="date"]:focus, 2176 #respond input[type="datetime"]:focus, 2177 #respond input[type="datetime-local"]:focus, 2178 #respond input[type="email"]:focus, 2179 #respond input[type="month"]:focus, 2180 #respond input[type="number"]:focus, 2181 #respond input[type="search"]:focus, 2182 #respond input[type="tel"]:focus, 2183 #respond input[type="time"]:focus, 2184 #respond input[type="url"]:focus, 2185 #respond input[type="week"]:focus, 2121 2186 #respond textarea:focus { 2122 2187 text-indent: 0; 2123 2188 z-index: 1; … … 2207 2272 #respond label { 2208 2273 line-height: 2.2em; 2209 2274 } 2210 #respond input[type=text] { 2275 #respond input[type="text"], 2276 #respond input[type="password"], 2277 #respond input[type="date"], 2278 #respond input[type="datetime"], 2279 #respond input[type="datetime-local"], 2280 #respond input[type="email"], 2281 #respond input[type="month"], 2282 #respond input[type="number"], 2283 #respond input[type="search"], 2284 #respond input[type="tel"], 2285 #respond input[type="time"], 2286 #respond input[type="url"], 2287 #respond input[type="week"] { 2211 2288 display: block; 2212 2289 height: 24px; 2213 2290 width: 75%; … … 2472 2549 top: 2.2em; 2473 2550 } 2474 2551 /* Use the available space in the smaller comment form */ 2475 #respond input[type="text"] { 2552 #respond input[type="text"], 2553 #respond input[type="password"], 2554 #respond input[type="date"], 2555 #respond input[type="datetime"], 2556 #respond input[type="datetime-local"], 2557 #respond input[type="email"], 2558 #respond input[type="month"], 2559 #respond input[type="number"], 2560 #respond input[type="search"], 2561 #respond input[type="tel"], 2562 #respond input[type="time"], 2563 #respond input[type="url"], 2564 #respond input[type="week"] { 2476 2565 width: 95%; 2477 2566 } 2478 2567 #respond .comment-form-author .required, -
wp-content/themes/twentyeleven/colors/dark.css
34 34 ins { 35 35 background: #00063f; 36 36 } 37 input[type=text], 38 .post-password-required input[type=password], 37 input[type="text"], 38 input[type="password"], 39 input[type="date"], 40 input[type="datetime"], 41 input[type="datetime-local"], 42 input[type="email"], 43 input[type="month"], 44 input[type="number"], 45 input[type="search"], 46 input[type="tel"], 47 input[type="time"], 48 input[type="url"], 49 input[type="week"], 39 50 textarea { 40 51 border: 1px solid #222; 41 52 } … … 513 524 border-color: #2c2c2c; 514 525 } 515 526 #respond input[type="text"], 527 #respond input[type="password"], 528 #respond input[type="date"], 529 #respond input[type="datetime"], 530 #respond input[type="datetime-local"], 531 #respond input[type="email"], 532 #respond input[type="month"], 533 #respond input[type="number"], 534 #respond input[type="search"], 535 #respond input[type="tel"], 536 #respond input[type="time"], 537 #respond input[type="url"], 538 #respond input[type="week"], 516 539 #respond textarea { 517 540 background: #000; 518 541 border: 4px solid #111; -
wp-content/themes/twentyeleven/editor-style.css
159 159 sub { 160 160 top: .5ex; 161 161 } 162 input[type=text], 162 input[type="text"], 163 input[type="password"], 164 input[type="date"], 165 input[type="datetime"], 166 input[type="datetime-local"], 167 input[type="email"], 168 input[type="month"], 169 input[type="number"], 170 input[type="search"], 171 input[type="tel"], 172 input[type="time"], 173 input[type="url"], 174 input[type="week"], 163 175 textarea { 164 176 background: #fafafa; 165 177 -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); … … 168 180 border: 1px solid #ddd; 169 181 color: #888; 170 182 } 171 input[type=text]:focus, 183 input[type="text"]:focus, 184 input[type="password"]:focus, 185 input[type="date"]:focus, 186 input[type="datetime"]:focus, 187 input[type="datetime-local"]:focus, 188 input[type="email"]:focus, 189 input[type="month"]:focus, 190 input[type="number"]:focus, 191 input[type="search"]:focus, 192 input[type="tel"]:focus, 193 input[type="time"]:focus, 194 input[type="url"]:focus, 195 input[type="week"]:focus, 172 196 textarea:focus { 173 197 color: #333; 174 198 } … … 176 200 padding-left: 3px; 177 201 width: 98%; 178 202 } 179 input[type=text] { 203 input[type="text"], 204 input[type="password"], 205 input[type="date"], 206 input[type="datetime"], 207 input[type="datetime-local"], 208 input[type="email"], 209 input[type="month"], 210 input[type="number"], 211 input[type="search"], 212 input[type="tel"], 213 input[type="time"], 214 input[type="url"], 215 input[type="week"] { 180 216 padding: 3px; 181 217 } 182 218