Ticket #27078: 27078.2-prefixed.patch
File 27078.2-prefixed.patch, 65.8 KB (added by , 11 years ago) |
---|
-
Gruntfile.js
152 152 src: [] 153 153 } 154 154 }, 155 autoprefixer: { 156 options: { 157 browsers: ['Android >= 2.1', 'Chrome >= 21', 'Explorer >= 7', 'Firefox >= 17', 'Opera >= 12.1', 'Safari >= 6.0'] 158 }, 159 core: { 160 expand: true, 161 cwd: SOURCE_DIR, 162 dest: SOURCE_DIR, 163 src: [ 164 'wp-admin/css/*.css', 165 'wp-includes/css/*.css' 166 ] 167 }, 168 colors: { 169 expand: true, 170 cwd: BUILD_DIR, 171 dest: BUILD_DIR, 172 src: [ 173 'wp-admin/css/colors/*/colors.css' 174 ] 175 } 176 }, 155 177 jshint: { 156 178 options: grunt.file.readJSON('.jshintrc'), 157 179 grunt: { … … 365 387 grunt.registerTask('colors', ['sass:colors']); 366 388 367 389 // Build task. 368 grunt.registerTask('build', ['clean:all', 'copy:all', 'cssmin:core', 'colors', ' rtl', 'cssmin:rtl', 'cssmin:colors',369 ' uglify:core', 'concat:tinymce', 'compress:tinymce', 'clean:tinymce', 'jsvalidate:build']);390 grunt.registerTask('build', ['clean:all', 'copy:all', 'cssmin:core', 'colors', 'autoprefixer:colors', 'rtl', 'cssmin:rtl', 391 'cssmin:colors', 'uglify:core', 'concat:tinymce', 'compress:tinymce', 'clean:tinymce', 'jsvalidate:build']); 370 392 371 393 // Testing tasks. 372 394 grunt.registerMultiTask('phpunit', 'Runs PHPUnit tests, including the ajax and multisite tests.', function() { -
package.json
21 21 "grunt-contrib-jshint": "~0.8.0", 22 22 "grunt-cssjanus": "~0.2.2", 23 23 "grunt-sass": "~0.10.0", 24 "grunt-autoprefixer": "~0.6.5", 24 25 "grunt-jsvalidate": "~0.2.2", 25 26 "matchdep": "~0.3.0" 26 27 } -
src/wp-admin/css/color-picker.css
9 9 .wp-color-result { 10 10 background-color: #f7f7f7; 11 11 border: 1px solid #ccc; 12 -webkit-border-radius: 3px; 12 13 border-radius: 3px; 13 14 cursor: pointer; 14 15 display: inline-block; … … 16 17 margin: 0 6px 6px 0px; 17 18 position: relative; 18 19 top: 1px; 19 user-select: none;20 -webkit-user-select: none; 20 21 -moz-user-select: none; 21 22 -ms-user-select: none; 22 -webkit-user-select: none;23 user-select: none; 23 24 vertical-align: bottom; 24 25 display: inline-block; 25 26 padding-left: 30px; 26 27 27 -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.08); 28 28 box-shadow: 0 1px 0 rgba(0,0,0,.08); 29 29 } 30 30 31 31 .wp-color-result:after { 32 32 background: #f7f7f7; 33 -webkit-border-radius: 0 2px 2px 0; 33 34 border-radius: 0 2px 2px 0; 34 35 border-left: 1px solid #ccc; 35 36 color: #555; … … 42 43 right: 0; 43 44 text-align: center; 44 45 top: 0; 45 46 46 -webkit-box-shadow: inset 0 1px 0 #fff; 47 47 box-shadow: inset 0 1px 0 #fff; 48 48 } … … 96 96 } 97 97 98 98 .wp-picker-container .iris-picker { 99 -webkit-border-radius: 0; 99 100 border-radius: 0; 100 101 border-color: #dfdfdf; 101 102 margin-top: 6px; -
src/wp-admin/css/colors/_admin.scss
439 439 .wp-slider .ui-slider-handle.focus { 440 440 background: $button-color; 441 441 border-color: darken( $button-color, 10% ); 442 -webkit-box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);443 442 box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15); 444 443 } 445 444 -
src/wp-admin/css/colors/_mixins.scss
1 1 /* 2 * Button mixin- creates 3d-ish button effect with correct 2 * Button mixin- creates 3d-ish button effect with correct 3 3 * highlights/shadows, based on a base color. 4 4 */ 5 5 @mixin button( $button-color, $text-color: white ) { 6 6 background: $button-color; 7 7 border-color: darken( $button-color, 10% ); 8 8 color: $text-color; 9 -webkit-box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);10 9 box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15); 11 10 12 11 &:hover, … … 14 13 background: darken( $button-color, 5% ); 15 14 border-color: darken( $button-color, 15% ); 16 15 color: $text-color; 17 -webkit-box-shadow: inset 0 1px 0 lighten( $button-color, 10% ), 0 1px 0 rgba(0,0,0,.15);18 16 box-shadow: inset 0 1px 0 lighten( $button-color, 10% ), 0 1px 0 rgba(0,0,0,.15); 19 17 } 20 18 … … 22 20 background: darken( $button-color, 10% ); 23 21 border-color: darken( $button-color, 15% ); 24 22 color: $text-color; 25 -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );26 23 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 27 24 } 28 25 -
src/wp-admin/css/customize-controls.css
84 84 } 85 85 86 86 #customize-theme-controls { 87 -webkit-box-shadow: 0 px1px 1px -1px rgba(0, 0, 0, 0.1);88 box-shadow: 0px1px 1px -1px rgba(0, 0, 0, 0.1);87 -webkit-box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1); 88 box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1); 89 89 } 90 90 91 91 #customize-theme-controls .control-section { … … 218 218 .collapse-sidebar { 219 219 background-color: transparent !important; 220 220 border: none !important; 221 -webkit-box-shadow: none !important; 221 222 box-shadow: none !important; 223 -webkit-border-radius: 0 !important; 222 224 border-radius: 0 !important; 223 225 } 224 226 … … 256 258 border: 2px solid #eeeeee; 257 259 -webkit-user-select: none; 258 260 -moz-user-select: none; 261 -ms-user-select: none; 259 262 user-select: none; 260 263 } 261 264 … … 423 426 .accordion-section .customize-control-image .upload-dropzone.supports-drag-drop { 424 427 display: block; 425 428 -webkit-transition: border-color 0.1s; 426 -moz-transition: border-color 0.1s; 427 -ms-transition: border-color 0.1s; 428 -o-transition: border-color 0.1s; 429 transition: border-color 0.1s; 429 transition: border-color 0.1s; 430 430 } 431 431 432 432 .accordion-section .customize-control-upload .library ul li, -
src/wp-admin/css/install.css
68 68 #logo a { 69 69 background-image: url('../images/w-logo-blue.png?ver=20131202'); 70 70 background-image: none, url('../images/wordpress-logo.svg?ver=20131107'); 71 -webkit-background-size: 80px 80px; 71 72 background-size: 80px 80px; 72 73 background-position: center top; 73 74 background-repeat: no-repeat; … … 99 100 border: 1px solid #dfdfdf; 100 101 font-family: "Open Sans", sans-serif; 101 102 width: 100%; 103 -webkit-box-sizing: border-box; 102 104 -moz-box-sizing: border-box; 103 -webkit-box-sizing: border-box;104 -ms-box-sizing: border-box; /* ie8 only */105 105 box-sizing: border-box; 106 106 } 107 107 … … 142 142 font-size: 15px; 143 143 padding: 3px 5px; 144 144 border: 1px solid #ddd; 145 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07); 145 146 box-shadow: inset 0 1px 2px rgba(0,0,0,0.07); 146 147 } 147 148 … … 304 305 padding: 7px 10px; 305 306 display: block; 306 307 max-width: none; 308 -webkit-box-sizing: border-box; 309 -moz-box-sizing: border-box; 307 310 box-sizing: border-box; 308 -moz-box-sizing: border-box;309 311 } 310 312 311 313 } -
src/wp-admin/css/media.css
352 352 353 353 .image-align-none-label { 354 354 background-image: url("../images/align-none-2x.png?ver=20120916"); 355 -webkit-background-size: 21px 15px; 355 356 background-size: 21px 15px; 356 357 } 357 358 358 359 .image-align-left-label { 359 360 background-image: url("../images/align-left-2x.png?ver=20120916"); 361 -webkit-background-size: 22px 15px; 360 362 background-size: 22px 15px; 361 363 } 362 364 363 365 .image-align-center-label { 364 366 background-image: url("../images/align-center-2x.png?ver=20120916"); 367 -webkit-background-size: 21px 15px; 365 368 background-size: 21px 15px; 366 369 } 367 370 368 371 .image-align-right-label { 369 372 background-image: url("../images/align-right-2x.png?ver=20120916"); 373 -webkit-background-size: 22px 15px; 370 374 background-size: 22px 15px; 371 375 } 372 376 } -
src/wp-admin/css/wp-admin.css
292 292 input[type="email"], 293 293 input[type="url"], 294 294 textarea { 295 -webkit-box-sizing: border-box; 295 296 -moz-box-sizing: border-box; 296 -webkit-box-sizing: border-box;297 -ms-box-sizing: border-box; /* ie8 only */298 297 box-sizing: border-box; 299 298 } 300 299 … … 317 316 min-width: 16px; 318 317 -webkit-appearance: none; 319 318 -webkit-box-sizing: border-box; 319 -moz-box-sizing: border-box; 320 320 box-sizing: border-box; 321 -webkit-box-shadow: inset 0 px1px 2px rgba(0,0,0,0.1);322 box-shadow: inset 0px1px 2px rgba(0,0,0,0.1);321 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); 322 box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); 323 323 } 324 324 325 325 .wp-core-ui input[type="reset"]:hover, … … 342 342 } 343 343 344 344 input[type=radio] { 345 -webkit-border-radius: 50%; 345 346 border-radius: 50%; 346 347 margin-right: 4px; 347 348 line-height: 10px; … … 352 353 textarea:disabled, 353 354 textarea.disabled { 354 355 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.04); 355 box-shadow: 356 box-shadow: inset 0 1px 2px rgba(0,0,0,0.04); 356 357 border-color: rgba(222, 222, 222, .75); 357 358 background: rgba(255, 255, 255, .5); 358 359 color: rgba(51, 51, 51, .5); … … 386 387 input[type=radio]:checked:before { 387 388 content: '\2022'; 388 389 text-indent: -9999px; 390 -webkit-border-radius: 50px; 389 391 border-radius: 50px; 390 392 font-size: 24px; 391 393 width: 6px; … … 481 483 font-size: 14px; 482 484 padding: 3px 5px; 483 485 line-height: 15px; 486 -webkit-border-radius: 0; 484 487 border-radius: 0; /* Reset mobile webkit's default element styling */ 485 488 } 486 489 … … 492 495 a { 493 496 color: #0074a2; 494 497 -webkit-transition-property: border, background, color; 495 -moz-transition-property: border, background, color; 496 transition-property: border, background, color; 498 transition-property: border, background, color; 497 499 -webkit-transition-duration: .05s; 498 -moz-transition-duration: .05s; 499 transition-duration: .05s; 500 transition-duration: .05s; 500 501 -webkit-transition-timing-function: ease-in-out; 501 -moz-transition-timing-function: ease-in-out; 502 transition-timing-function: ease-in-out; 502 transition-timing-function: ease-in-out; 503 503 } 504 504 505 505 a, … … 880 880 border-left: 4px solid #7ad03a; 881 881 padding: 1px 12px; 882 882 background-color: #fff; 883 884 -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1); 885 box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1); 883 -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1); 884 box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1); 886 885 } 887 886 888 887 div.error, 889 888 .login #login_error { 890 889 border-left: 4px solid #dd3d36; 891 890 background: #fff; 892 893 -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1); 894 box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1); 891 -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1); 892 box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1); 895 893 } 896 894 897 895 div.error { … … 929 927 top: -3px; 930 928 text-decoration: none; 931 929 border: none; 930 -webkit-border-radius: 2px; 932 931 border-radius: 2px; 933 932 background: #e0e0e0; 934 933 text-shadow: none; … … 959 958 input[type="url"], 960 959 select { 961 960 border: 1px solid #ddd; 961 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07); 962 962 box-shadow: inset 0 1px 2px rgba(0,0,0,0.07); 963 963 background-color: #fff; 964 964 color: #333; … … 1141 1141 -webkit-font-smoothing: antialiased; 1142 1142 -moz-osx-font-smoothing: grayscale; 1143 1143 -webkit-transition: all .1s ease-in-out; 1144 -moz-transition: all .1s ease-in-out; 1145 transition: all .1s ease-in-out; 1144 transition: all .1s ease-in-out; 1146 1145 } 1147 1146 1148 1147 .icon16.icon-dashboard:before, … … 1305 1304 padding: 1.5em 0; 1306 1305 margin: 5px 0; 1307 1306 -webkit-border-bottom-left-radius: 3px; 1307 border-bottom-left-radius: 3px; 1308 1308 -webkit-border-bottom-right-radius: 3px; 1309 border-bottom-left-radius: 3px;1310 1309 border-bottom-right-radius: 3px; 1311 1310 border: none; 1312 1311 } … … 1455 1454 top: 0; 1456 1455 text-decoration: none !important; 1457 1456 vertical-align: top; 1458 1459 1457 -webkit-font-smoothing: antialiased; 1460 1458 -moz-osx-font-smoothing: grayscale; 1461 1459 } … … 1522 1520 } 1523 1521 1524 1522 .ui-autocomplete-input.open { 1523 -webkit-border-bottom-right-radius: 0; 1525 1524 border-bottom-right-radius: 0; 1525 -webkit-border-bottom-left-radius: 0; 1526 1526 border-bottom-left-radius: 0; 1527 1527 } 1528 1528 … … 1532 1532 list-style: none; 1533 1533 position: absolute; 1534 1534 z-index: 10000; 1535 -webkit-border-bottom-right-radius: 3px; 1535 1536 border-bottom-right-radius: 3px; 1537 -webkit-border-bottom-left-radius: 3px; 1536 1538 border-bottom-left-radius: 3px; 1537 1539 border: 1px solid #aaa; 1538 1540 background-color: #efefef; … … 1660 1662 margin: 25px 20px 0 2px; 1661 1663 background-color: #fff; 1662 1664 border-left: 4px solid #ffba00; 1663 1664 -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1); 1665 box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1); 1665 -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1); 1666 box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1); 1666 1667 } 1667 1668 1668 1669 .update-message { … … 1757 1758 border: 1px solid #ddd; 1758 1759 border-top: none; 1759 1760 -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.025); 1760 box-shadow: 1761 box-shadow: 0 1px 0 rgba(0,0,0,.025); 1761 1762 } 1762 1763 1763 1764 #screen-options-link-wrap, … … 1768 1769 border: 1px solid #ddd; 1769 1770 border-top: none; 1770 1771 background: #fff; 1771 -webkit-box-shadow: 0 px1px 1px -1px rgba(0,0,0,0.1);1772 box-shadow: 0px1px 1px -1px rgba(0,0,0,0.1);1772 -webkit-box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); 1773 box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); 1773 1774 } 1774 1775 1775 1776 #screen-meta-links .screen-meta-toggle { … … 1790 1791 #screen-meta-links a:focus { 1791 1792 border-color: #aaa; 1792 1793 -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.15); 1793 box-shadow: 1794 box-shadow: 0 2px 3px rgba(0,0,0,0.15); 1794 1795 } 1795 1796 1796 1797 #screen-meta-links a.show-settings { … … 1895 1896 1896 1897 #contextual-help-wrap.no-sidebar #contextual-help-back { 1897 1898 right: 0; 1898 1899 1899 border-right-width: 0; 1900 1900 -webkit-border-bottom-right-radius: 2px; 1901 1901 border-bottom-right-radius: 2px; … … 1938 1938 margin: 0 -1px 0 0; 1939 1939 border-left: 2px solid #2ea2cc; 1940 1940 background: #f6fbfd; 1941 1942 -webkit-box-shadow: 0px 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02); 1943 box-shadow: 0px 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02); 1941 -webkit-box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02); 1942 box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02); 1944 1943 } 1945 1944 1946 1945 .contextual-help-tabs .active a { … … 1989 1988 #adminmenu * { 1990 1989 -webkit-user-select: none; 1991 1990 -moz-user-select: none; 1991 -ms-user-select: none; 1992 1992 user-select: none; 1993 1993 } 1994 1994 … … 2033 2033 padding: 7px 0 8px; 2034 2034 z-index: 9999; 2035 2035 background-color: #333; 2036 2037 2036 -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2); 2038 box-shadow: 2037 box-shadow: 0 3px 5px rgba(0,0,0,0.2); 2039 2038 } 2040 2039 2041 2040 #adminmenu .wp-submenu a, … … 2128 2127 .folded #adminmenu .wp-has-current-submenu li > a { 2129 2128 padding-right: 16px; 2130 2129 padding-left: 14px; 2131 -moz-transition: all .1s ease-in-out;2132 2130 -webkit-transition: all .1s ease-in-out; 2133 2131 transition: all .1s ease-in-out; 2134 2132 } … … 2182 2180 #adminmenu div.wp-menu-image.svg { 2183 2181 background-repeat: no-repeat; 2184 2182 background-position: center; 2183 -webkit-background-size: 20px auto; 2185 2184 background-size: 20px auto; 2186 2185 } 2187 2186 … … 2195 2194 display: inline-block; 2196 2195 -webkit-font-smoothing: antialiased; 2197 2196 -moz-osx-font-smoothing: grayscale; 2198 -moz-transition: all .1s ease-in-out;2199 2197 -webkit-transition: all .1s ease-in-out; 2200 2198 transition: all .1s ease-in-out; 2201 2199 } … … 2391 2389 margin-top: 10px; 2392 2390 color: #aaa; 2393 2391 -webkit-transition: all .1s ease-in-out; 2394 -moz-transition: all .1s ease-in-out; 2395 transition: all .1s ease-in-out; 2392 transition: all .1s ease-in-out; 2396 2393 } 2397 2394 2398 2395 #collapse-menu:hover, … … 2415 2412 height: 15px; 2416 2413 margin: 10px 8px 10px 11px; 2417 2414 width: 15px; 2418 2419 2415 -webkit-border-radius: 10px; 2420 2416 border-radius: 10px; 2421 2417 } … … 2438 2434 position: relative; 2439 2435 text-align: center; 2440 2436 width: 20px; 2441 -moz-transition: all .1s ease-in-out;2442 2437 -webkit-transition: all .1s ease-in-out; 2443 2438 transition: all .1s ease-in-out; 2444 2445 2439 -webkit-font-smoothing: antialiased; 2446 2440 -moz-osx-font-smoothing: grayscale; 2447 2441 } 2448 2442 2449 2443 .folded #collapse-button div:after, 2450 2444 .rtl #collapse-button div:after { 2445 -webkit-transform: rotate(180deg); 2451 2446 -ms-transform: rotate(180deg); 2452 -webkit-transform: rotate(180deg);2453 2447 transform: rotate(180deg); 2454 2448 } 2455 2449 2456 2450 .rtl.folded #collapse-button div:after { 2451 -webkit-transform: none; 2457 2452 -ms-transform: none; 2458 -webkit-transform: none;2459 2453 transform: none; 2460 2454 } 2461 2455 … … 2565 2559 } 2566 2560 2567 2561 .auto-fold #collapse-button div:after { 2562 -webkit-transform: rotate(180deg); 2568 2563 -ms-transform: rotate(180deg); 2569 -webkit-transform: rotate(180deg);2570 2564 transform: rotate(180deg); 2571 2565 } 2572 2566 2573 2567 .rtl.auto-fold #collapse-button div:after { 2568 -webkit-transform: none; 2574 2569 -ms-transform: none; 2575 -webkit-transform: none;2576 2570 transform: none; 2577 2571 } 2578 2572 … … 2766 2760 } 2767 2761 2768 2762 .postbox-container .meta-box-sortables { 2763 -webkit-box-sizing: border-box; 2769 2764 -moz-box-sizing: border-box; 2770 -webkit-box-sizing: border-box;2771 -ms-box-sizing: border-box;2772 2765 box-sizing: border-box; 2773 2766 } 2774 2767 … … 2995 2988 margin-top: 1px; 2996 2989 -webkit-user-select: none; 2997 2990 -moz-user-select: none; 2991 -ms-user-select: none; 2998 2992 user-select: none; 2999 2993 } 3000 2994 … … 3109 3103 padding: 23px 10px 0; 3110 3104 border: 1px solid #e5e5e5; 3111 3105 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04); 3112 box-shadow: 3106 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 3113 3107 background: #fff; 3114 3108 font-size: 13px; 3115 3109 line-height: 2.1em; … … 3181 3175 left: -18px; 3182 3176 margin-top: -2px; 3183 3177 -webkit-transition: all .1s ease-in-out; 3184 -moz-transition: all .1s ease-in-out; 3185 transition: all .1s ease-in-out; 3178 transition: all .1s ease-in-out; 3186 3179 } 3187 3180 3188 3181 .wp-core-ui .welcome-panel .button.button-hero { … … 3495 3488 3496 3489 #dashboard_quick_press input, 3497 3490 #dashboard_quick_press textarea { 3491 -webkit-box-sizing: border-box; 3492 -moz-box-sizing: border-box; 3498 3493 box-sizing: border-box; 3499 -moz-box-sizing:border-box;3500 -webkit-box-sizing:border-box;3501 3494 margin: 0; 3502 3495 } 3503 3496 … … 3869 3862 3870 3863 /* @todo: pick a consistent list table selector */ 3871 3864 .wp-list-table a { 3872 -moz-transition: none;3873 3865 -webkit-transition: none; 3874 transition: 3866 transition: none; 3875 3867 } 3876 3868 3877 3869 #the-list tr:last-child td, … … 4002 3994 } 4003 3995 4004 3996 tr.locked-info, tr.wp-locked .locked-info { 4005 -webkit-transition: height 1s, opacity 500ms; 4006 -moz-transition: height 1s, opacity 500ms; 4007 -ms-transition: height 1s, opacity 500ms; 4008 -o-transition: height 1s, opacity 500ms; 4009 transition: height 1s, opacity 500ms; 3997 -webkit-transition: height 1s, opacity 0.5s; 3998 transition: height 1s, opacity 0.5s; 4010 3999 } 4011 4000 4012 4001 .fixed .column-comments .sorting-indicator { … … 4666 4655 min-width: 255px; 4667 4656 border: 1px solid #e5e5e5; 4668 4657 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04); 4669 box-shadow: 4658 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 4670 4659 background: #fff; 4671 4660 } 4672 4661 … … 4844 4833 border-top: none; 4845 4834 background-color: #f7f7f7; 4846 4835 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04); 4847 box-shadow: 4836 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 4848 4837 } 4849 4838 4850 4839 #post-status-info td { … … 5109 5098 top: 0; 5110 5099 height: 82px; 5111 5100 background: #fff; 5101 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1); 5112 5102 box-shadow: 0 1px 3px rgba(0,0,0,0.1); 5113 5103 } 5114 5104 … … 5118 5108 height: 0.7em; 5119 5109 top: 7px; 5120 5110 max-width: 70%; 5111 -webkit-box-sizing: border-box; 5121 5112 -moz-box-sizing: border-box; 5122 -webkit-box-sizing: border-box;5123 5113 box-sizing: border-box; 5124 5114 background-color: #fff; 5125 5115 } … … 5128 5118 position: absolute; 5129 5119 height: 100%; 5130 5120 border-left: 1px solid #aaa; 5121 -webkit-box-sizing: border-box; 5131 5122 -moz-box-sizing: border-box; 5132 -webkit-box-sizing: border-box;5133 5123 box-sizing: border-box; 5134 5124 } 5135 5125 … … 5165 5155 top: 50%; 5166 5156 margin-left: -90px; 5167 5157 -webkit-transition: opacity 0.5s; 5168 -moz-transition: opacity 0.5s; 5169 -ms-transition: opacity 0.5s; 5170 -o-transition: opacity 0.5s; 5171 transition: opacity 0.5s; 5158 transition: opacity 0.5s; 5172 5159 filter: alpha(opacity=0); /* ie8 and earlier */ 5173 5160 } 5174 5161 … … 5189 5176 5190 5177 .revisions .diff { 5191 5178 -webkit-transition: opacity 0.5s; 5192 -moz-transition: opacity 0.5s; 5193 -ms-transition: opacity 0.5s; 5194 -o-transition: opacity 0.5s; 5195 transition: opacity 0.5s; 5179 transition: opacity 0.5s; 5196 5180 } 5197 5181 5198 5182 .revisions.loading .diff { … … 5207 5191 .revisions-meta { 5208 5192 margin-top: 20px; 5209 5193 background-color: #fff; 5194 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1); 5210 5195 box-shadow: 0 1px 3px rgba(0,0,0,0.1); 5211 5196 } 5212 5197 5213 5198 .revisions.pinned .revisions-meta { 5199 -webkit-box-shadow: none; 5214 5200 box-shadow: none; 5215 5201 } 5216 5202 … … 5269 5255 .revisions-diff { 5270 5256 padding: 15px; 5271 5257 background-color: #fff; 5258 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1); 5272 5259 box-shadow: 0 1px 3px rgba(0,0,0,0.1); 5273 5260 } 5274 5261 … … 5450 5437 width: 25px; 5451 5438 height: 25px; 5452 5439 -webkit-transform: rotate(45deg); 5453 -moz-transform: rotate(45deg); 5454 -ms-transform: rotate(45deg); 5455 -o-transform: rotate(45deg); 5456 transform: rotate(45deg); 5440 -ms-transform: rotate(45deg); 5441 transform: rotate(45deg); 5457 5442 } 5458 5443 5459 5444 .revisions-tooltip.flipped .revisions-tooltip-arrow > span { … … 5495 5480 .arrow::after { 5496 5481 z-index: 9999; 5497 5482 background-color: #fff; 5483 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1); 5498 5484 box-shadow: 0 1px 3px rgba(0,0,0,0.1); 5499 5485 } 5500 5486 … … 5515 5501 width: 25px; 5516 5502 height: 25px; 5517 5503 -webkit-transform: rotate(45deg); 5518 -moz-transform: rotate(45deg);5519 5504 -ms-transform: rotate(45deg); 5520 -o-transform: rotate(45deg);5521 5505 transform: rotate(45deg); 5522 5506 } 5523 5507 … … 5544 5528 } 5545 5529 5546 5530 .wp-slider .ui-slider-handle { 5531 -webkit-border-radius: 50%; 5547 5532 border-radius: 50%; 5548 5533 height: 18px; 5549 5534 margin-top: -3px; … … 5571 5556 content: "\f229"; 5572 5557 font: normal 18px/1 'dashicons'; 5573 5558 speak: none; 5574 -webkit-font-smoothing: antialiased;5559 -webkit-font-smoothing: antialiased; 5575 5560 -moz-osx-font-smoothing: grayscale; 5576 5561 } 5577 5562 … … 5691 5676 .post-format-icon:before { 5692 5677 color: #ddd; 5693 5678 -webkit-transition: all .1s ease-in-out; 5694 -moz-transition: all .1s ease-in-out; 5695 transition: all .1s ease-in-out; 5679 transition: all .1s ease-in-out; 5696 5680 } 5697 5681 5698 5682 a.post-state-format:hover:before, … … 5819 5803 5820 5804 #post-body ul.add-menu-item-tabs li.tabs { 5821 5805 -webkit-border-top-left-radius: 3px; 5806 border-top-left-radius: 3px; 5822 5807 -webkit-border-bottom-left-radius: 3px; 5823 border-top-left-radius: 3px;5824 5808 border-bottom-left-radius: 3px; 5825 5809 } 5826 5810 … … 6214 6198 padding: 0; 6215 6199 overflow: hidden; 6216 6200 margin-bottom: 2px; 6201 -webkit-border-radius: 22px; 6217 6202 border-radius: 22px; 6218 6203 background: #ddd; 6219 6204 -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1); … … 6225 6210 width: 0; 6226 6211 height: 100%; 6227 6212 margin-top: -22px; 6213 -webkit-border-radius: 22px; 6228 6214 border-radius: 22px; 6229 6215 background-color: #0074a2; 6230 6216 -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3); … … 6477 6463 position: absolute; 6478 6464 top: 0; 6479 6465 background: #fff url('../images/spinner.gif') no-repeat scroll 22px 10px; 6466 -webkit-background-size: 20px 20px; 6480 6467 background-size: 20px 20px; 6481 6468 opacity: 0.7; 6482 6469 filter: alpha(opacity=70); … … 6487 6474 6488 6475 .spinner { 6489 6476 background: url('../images/spinner.gif') no-repeat; 6477 -webkit-background-size: 20px 20px; 6490 6478 background-size: 20px 20px; 6491 6479 display: none; 6492 6480 float: right; … … 6917 6905 #the-comment-list th, 6918 6906 #the-comment-list td { 6919 6907 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); 6920 box-shadow: 6908 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); 6921 6909 } 6922 6910 6923 6911 #the-comment-list tr:last-child th, … … 6968 6956 6969 6957 .themes-php .wrap .theme-count { 6970 6958 color: #fff; 6959 -webkit-border-radius: 30px; 6971 6960 border-radius: 30px; 6972 6961 background: #777; 6973 6962 font-size: 14px; … … 7002 6991 width: 30.6%; 7003 6992 border: 1px solid #dedede; 7004 6993 -webkit-box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); 7005 box-shadow: 6994 box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); 7006 6995 -webkit-box-sizing: border-box; 7007 -moz-box-sizing: 7008 box-sizing: 6996 -moz-box-sizing: border-box; 6997 box-sizing: border-box; 7009 6998 } 7010 6999 7011 7000 .ie8 .theme-browser .theme { … … 7028 7017 margin: 0; 7029 7018 padding: 15px; 7030 7019 -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); 7031 box-shadow: 7020 box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); 7032 7021 overflow: hidden; 7033 7022 white-space: nowrap; 7034 7023 text-overflow: ellipsis; … … 7041 7030 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; 7042 7031 opacity: 0; 7043 7032 -webkit-transition: opacity 0.1s ease-in-out; 7044 transition: 7033 transition: opacity 0.1s ease-in-out; 7045 7034 position: absolute; 7046 7035 bottom: 0; 7047 7036 right: 0; … … 7076 7065 overflow: hidden; 7077 7066 position: relative; 7078 7067 -webkit-transition: opacity 0.2s ease-in-out; 7079 transition: 7068 transition: opacity 0.2s ease-in-out; 7080 7069 } 7081 7070 7082 7071 .theme-browser .theme .theme-screenshot:after { … … 7092 7081 top: 0; 7093 7082 width: 100%; 7094 7083 -webkit-transform: translateZ( 0 ); /* Prevents rendering bugs in Chrome */ 7095 -webkit-transition: opacity 0.2s ease-in-out; 7096 transition: 7084 -webkit-transition: opacity 0.2s ease-in-out; /* Prevents rendering bugs in Chrome */ 7085 transition: opacity 0.2s ease-in-out; 7097 7086 } 7098 7087 7099 7088 .theme-browser .theme:hover .theme-screenshot { … … 7120 7109 font-weight: 600; 7121 7110 padding: 15px 12px; 7122 7111 text-align: center; 7112 -webkit-border-radius: 3px; 7123 7113 border-radius: 3px; 7124 7114 -webkit-transition: opacity 0.1s ease-in-out; 7125 transition: 7115 transition: opacity 0.1s ease-in-out; 7126 7116 } 7127 7117 .theme-browser .theme:focus { 7128 7118 outline: 1px dotted #222; … … 7192 7182 padding-right: 110px; 7193 7183 font-weight: 300; 7194 7184 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.5); 7195 box-shadow: 7185 box-shadow: inset 0 1px 1px rgba(0,0,0,0.5); 7196 7186 } 7197 7187 7198 7188 .theme-browser .theme.active .theme-name span { … … 7234 7224 */ 7235 7225 .theme-browser .theme.add-new-theme { 7236 7226 border: none; 7227 -webkit-box-shadow: none; 7237 7228 box-shadow: none; 7238 7229 } 7239 7230 … … 7262 7253 border: 5px dashed #d5d2ca; 7263 7254 border: 5px dashed rgba(0, 0, 0, 0.1); 7264 7255 -webkit-transition: opacity 0.2s ease-in-out; 7265 transition: 7256 transition: opacity 0.2s ease-in-out; 7266 7257 -webkit-box-sizing: border-box; 7267 -moz-box-sizing: 7268 box-sizing: 7258 -moz-box-sizing: border-box; 7259 box-sizing: border-box; 7269 7260 } 7270 7261 7271 7262 .theme-browser .theme.add-new-theme span:after { 7272 7263 background: #e5e5e5; 7273 7264 background: rgba(153, 153, 153, 0.1); 7265 -webkit-border-radius: 50%; 7274 7266 border-radius: 50%; 7275 7267 display: inline-block; 7276 7268 content: '\f132'; … … 7314 7306 .theme-browser .theme.add-new-theme .theme-name { 7315 7307 background: none; 7316 7308 text-align: center; 7309 -webkit-box-shadow: none; 7317 7310 box-shadow: none; 7318 7311 font-weight: 400; 7319 7312 position: relative; … … 7457 7450 bottom: 3%; 7458 7451 background: #fff; 7459 7452 -webkit-box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1); 7460 box-shadow: 7453 box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1); 7461 7454 z-index: 20; 7455 -webkit-box-sizing: border-box; 7456 -moz-box-sizing: border-box; 7462 7457 box-sizing: border-box; 7463 7458 } 7464 7459 … … 7500 7495 padding: 10px 25px 5px; 7501 7496 background: #f3f3f3; 7502 7497 z-index: 30; 7498 -webkit-box-sizing: border-box; 7499 -moz-box-sizing: border-box; 7503 7500 box-sizing: border-box; 7504 7501 border-top: 1px solid #eee; 7505 7502 } … … 7520 7517 bottom: 5px; 7521 7518 text-decoration: none; 7522 7519 border-color: transparent; 7520 -webkit-box-shadow: none; 7523 7521 box-shadow: none; 7524 7522 background: transparent; 7525 7523 } … … 7556 7554 .theme-overlay .screenshot { 7557 7555 border: 1px solid #fff; 7558 7556 -webkit-box-sizing: border-box; 7559 -moz-box-sizing: 7560 box-sizing: 7557 -moz-box-sizing: border-box; 7558 box-sizing: border-box; 7561 7559 overflow: hidden; 7562 7560 position: relative; 7563 7561 -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.2); 7564 box-shadow: 7562 box-shadow: 0 0 0 1px rgba(0,0,0,0.2); 7565 7563 } 7566 7564 7567 7565 .theme-overlay .screenshot:after { … … 7644 7642 font-size: 11px; 7645 7643 display: inline-block; 7646 7644 padding: 2px 8px; 7645 -webkit-border-radius: 2px; 7647 7646 border-radius: 2px; 7648 7647 margin: 0 0 -10px; 7649 7648 -webkit-user-select: none; 7650 -moz-user-select: 7651 -ms-user-select: 7652 user-select: 7649 -moz-user-select: none; 7650 -ms-user-select: none; 7651 user-select: none; 7653 7652 } 7654 7653 7655 7654 .theme-overlay .theme-name { … … 7668 7667 display: inline-block; 7669 7668 margin-left: 10px; 7670 7669 -webkit-user-select: none; 7671 -moz-user-select: 7672 -ms-user-select: 7673 user-select: 7670 -moz-user-select: none; 7671 -ms-user-select: none; 7672 user-select: none; 7674 7673 } 7675 7674 7676 7675 .theme-overlay .theme-author { … … 7712 7711 background: #fefaf7; 7713 7712 border: 1px solid #eee; 7714 7713 border-left: 4px solid #d54e21; 7714 -webkit-border-radius: 3px; 7715 7715 border-radius: 3px; 7716 7716 padding: 5px 20px 10px; 7717 7717 } … … 8294 8294 .upgrade .plugins td, 8295 8295 .upgrade .plugins th { 8296 8296 -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 8297 box-shadow: 8297 box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 8298 8298 } 8299 8299 8300 8300 .plugins tr.active.plugin-update-tr + tr.inactive th, … … 8302 8302 .plugins tr.active + tr.inactive th, 8303 8303 .plugins tr.active + tr.inactive td { 8304 8304 border-top: 1px solid rgba(0,0,0,0.03); 8305 8306 -webkit-box-shadow: inset 0px 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1; 8307 box-shadow: inset 0px 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1; 8305 -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1; 8306 box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1; 8308 8307 } 8309 8308 8310 8309 .plugins .update td, … … 8384 8383 padding: 0; 8385 8384 border: none; 8386 8385 -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 8387 box-shadow: 8386 box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 8388 8387 } 8389 8388 8390 8389 /* update notices for active plugins */ … … 8434 8433 display: inline-block; 8435 8434 width: 24%; 8436 8435 padding: 5px 15px 15px; 8436 -webkit-box-sizing: border-box; 8437 8437 -moz-box-sizing: border-box; 8438 8438 box-sizing: border-box; 8439 8439 margin-bottom: 3px; … … 8515 8515 8516 8516 .pressthis a:hover:after { 8517 8517 -webkit-transform: skew(20deg) rotate(9deg); 8518 -m oz-transform: skew(20deg) rotate(9deg);8518 -ms-transform: skew(20deg) rotate(9deg); 8519 8519 transform: skew(20deg) rotate(9deg); 8520 8520 -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); 8521 8521 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); … … 8546 8546 right: 10px; 8547 8547 bottom: 9px; 8548 8548 background: transparent; 8549 8550 8549 -webkit-transform: skew(20deg) rotate(6deg); 8551 -m oz-transform: skew(20deg) rotate(6deg);8550 -ms-transform: skew(20deg) rotate(6deg); 8552 8551 transform: skew(20deg) rotate(6deg); 8553 8552 -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); 8554 8553 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); … … 8743 8742 background: #0074a2 url('../images/w-logo-white.png?ver=20131202') no-repeat; 8744 8743 background: #0074a2, url('../images/wordpress-logo-white.svg?ver=20131110') no-repeat; /* multiple backgrounds are ignored by browsers that don't support SVGs */ 8745 8744 background-position: center 24px; 8745 -webkit-background-size: 85px 85px; 8746 8746 background-size: 85px 85px; 8747 8747 color: #78c8e6; 8748 8748 font-size: 14px; … … 8754 8754 display: inline-block; 8755 8755 width: 150px; 8756 8756 text-rendering: optimizeLegibility; 8757 8758 8757 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2); 8759 box-shadow: 8758 box-shadow: 0 1px 3px rgba(0,0,0,0.2); 8760 8759 } 8761 8760 8762 8761 … … 9079 9078 height: 19px; 9080 9079 margin-left: 15px; 9081 9080 padding: 0; 9081 -webkit-border-radius: 50%; 9082 9082 border-radius: 50%; 9083 9083 color: #777; 9084 9084 text-decoration: none; … … 9104 9104 } 9105 9105 9106 9106 .wp-full-overlay .collapse-sidebar-arrow:before { 9107 -webkit-border-radius: 50%; 9107 9108 border-radius: 50%; 9108 9109 float: left; 9109 9110 content: "\f148"; … … 9122 9123 9123 9124 .wp-full-overlay.collapsed .collapse-sidebar-arrow:before, 9124 9125 .rtl .wp-full-overlay .collapse-sidebar-arrow:before { 9126 -webkit-transform: rotate(180deg); 9125 9127 -ms-transform: rotate(180deg); 9126 -webkit-transform: rotate(180deg);9127 9128 transform: rotate(180deg); 9128 9129 } 9129 9130 9130 9131 .rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before { 9132 -webkit-transform: none; 9131 9133 -ms-transform: none; 9132 -webkit-transform: none;9133 9134 transform: none; 9134 9135 } 9135 9136 … … 9154 9155 .wp-full-overlay .collapse-sidebar, 9155 9156 .wp-full-overlay-main { 9156 9157 -webkit-transition-property: left, right, top, bottom, width, margin; 9157 -moz-transition-property: left, right, top, bottom, width, margin; 9158 -ms-transition-property: left, right, top, bottom, width, margin; 9159 -o-transition-property: left, right, top, bottom, width, margin; 9160 transition-property: left, right, top, bottom, width, margin; 9158 transition-property: left, right, top, bottom, width, margin; 9161 9159 -webkit-transition-duration: 0.2s; 9162 -moz-transition-duration: 0.2s; 9163 -ms-transition-duration: 0.2s; 9164 -o-transition-duration: 0.2s; 9165 transition-duration: 0.2s; 9160 transition-duration: 0.2s; 9166 9161 } 9167 9162 9168 9163 /*------------------------------------------------------------------------------ … … 9201 9196 9202 9197 .customize-loading #customize-container { 9203 9198 background: #fff url('../images/spinner.gif') no-repeat fixed center center; 9199 -webkit-background-size: 20px 20px; 9204 9200 background-size: 20px 20px; 9205 9201 } 9206 9202 … … 9209 9205 height: 100%; 9210 9206 width: 100%; 9211 9207 z-index: 20; 9212 9213 9208 -webkit-transition: opacity 0.3s; 9214 -moz-transition: opacity 0.3s; 9215 -ms-transition: opacity 0.3s; 9216 -o-transition: opacity 0.3s; 9217 transition: opacity 0.3s; 9209 transition: opacity 0.3s; 9218 9210 } 9219 9211 9220 9212 #customize-container .collapse-sidebar { … … 9301 9293 9302 9294 #theme-installer .wp-full-overlay-main { 9303 9295 background: #fff url('../images/spinner.gif') no-repeat fixed center center; 9296 -webkit-background-size: 20px 20px; 9304 9297 background-size: 20px 20px; 9305 9298 } 9306 9299 … … 9550 9543 border-bottom: 1px solid #dfdfdf; 9551 9544 background-color: #f9f9f9; 9552 9545 -webkit-transition: none; 9553 -moz-transition: none;9554 9546 transition: none; 9555 9547 } 9556 9548 … … 9570 9562 padding-left: 6px; 9571 9563 padding-right: 6px; 9572 9564 -webkit-border-top-left-radius: 3px; 9565 border-top-left-radius: 3px; 9573 9566 -webkit-border-top-right-radius: 3px; 9574 border-top-left-radius: 3px;9575 9567 border-top-right-radius: 3px; 9576 9568 border: 1px solid #dfdfdf; 9577 9569 border-bottom-color: #f1f1f1; … … 9805 9797 9806 9798 #activity-widget #the-comment-list .comment { 9807 9799 -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06); 9808 box-shadow: 9800 box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06); 9809 9801 } 9810 9802 9811 9803 #activity-widget .comments #the-comment-list .alt { … … 9995 9987 font-weight: normal; 9996 9988 overflow: hidden; 9997 9989 background: #fff; 9998 9999 9990 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13); 10000 box-shadow: 9991 box-shadow: 0 1px 3px rgba(0,0,0,0.13); 10001 9992 } 10002 9993 10003 9994 .login form .forgetmenot { … … 10036 10027 .login h1 a { 10037 10028 background-image: url('../images/w-logo-blue.png?ver=20131202'); 10038 10029 background-image: none, url('../images/wordpress-logo.svg?ver=20131107'); 10030 -webkit-background-size: 80px 80px; 10039 10031 background-size: 80px 80px; 10040 10032 background-position: center top; 10041 10033 background-repeat: no-repeat; … … 10790 10782 border: 1px solid #e5e5e5; 10791 10783 border-top: none; 10792 10784 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04); 10793 box-shadow: 10785 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 10794 10786 } 10795 10787 10796 10788 .menu-item-settings .field-move a { … … 10946 10938 font-weight: normal; 10947 10939 font-style: normal; 10948 10940 vertical-align: top; 10949 -moz-transition: color .1s ease-in 0;10950 10941 -webkit-transition: color .1s ease-in 0; 10942 transition: color .1s ease-in 0; 10951 10943 text-align: center; 10952 10944 color: #0074a2; 10953 10945 } … … 10962 10954 10963 10955 .rtl .star-rating .star-half { 10964 10956 -webkit-transform: rotateY(180deg); 10965 -ms-transform: 10966 transform: 10957 -ms-transform: rotateY(180deg); 10958 transform: rotateY(180deg); 10967 10959 } 10968 10960 10969 10961 .star-rating .star-empty:before { … … 11004 10996 margin-bottom: 0; 11005 10997 margin-top: 10px; 11006 10998 -webkit-border-top-left-radius: 3px; 10999 border-top-left-radius: 3px; 11007 11000 -webkit-border-bottom-left-radius: 3px; 11008 border-top-left-radius: 3px;11009 11001 border-bottom-left-radius: 3px; 11010 11002 } 11011 11003 … … 11131 11123 margin: 7px 7px 0; 11132 11124 -webkit-user-select: none; 11133 11125 -moz-user-select: none; 11126 -ms-user-select: none; 11134 11127 user-select: none; 11135 11128 } 11136 11129 … … 11167 11160 .press-this #title { 11168 11161 margin-left: 0; 11169 11162 margin-right: 0; 11163 -webkit-box-sizing: border-box; 11170 11164 -moz-box-sizing: border-box; 11171 -webkit-box-sizing: border-box;11172 -ms-box-sizing: border-box;11173 11165 box-sizing: border-box; 11174 11166 } 11175 11167 … … 11612 11604 .widget { 11613 11605 margin: 0 auto 10px; 11614 11606 position: relative; 11607 -webkit-box-sizing: border-box; 11608 -moz-box-sizing: border-box; 11615 11609 box-sizing: border-box; 11616 -moz-box-sizing: border-box;11617 -webkit-box-sizing: border-box;11618 11610 } 11619 11611 11620 11612 .widget-top { … … 11637 11629 text-overflow: ellipsis; 11638 11630 -webkit-user-select: none; 11639 11631 -moz-user-select: none; 11632 -ms-user-select: none; 11640 11633 user-select: none; 11641 11634 } 11642 11635 … … 11800 11793 padding: 0; 11801 11794 margin: 0 0 20px 0; 11802 11795 border: none; 11796 -webkit-box-shadow: none; 11803 11797 box-shadow: none; 11804 11798 } 11805 11799 … … 11882 11876 /* Dragging a widget over a closed sidebar */ 11883 11877 #widgets-right .widgets-holder-wrap.widget-hover { 11884 11878 border-color: #777; 11879 -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.3); 11885 11880 box-shadow: 0 1px 2px rgba(0,0,0,0.3); 11886 11881 } 11887 11882 … … 11928 11923 .widgets-holder-wrap .sidebar-description { 11929 11924 -webkit-user-select: none; 11930 11925 -moz-user-select: none; 11926 -ms-user-select: none; 11931 11927 user-select: none; 11932 11928 } 11933 11929 … … 12059 12055 /* Widgets Area Chooser */ 12060 12056 .widget-liquid-left #widgets-left.chooser #available-widgets .widget, 12061 12057 .widget-liquid-left #widgets-left.chooser .inactive-sidebar { 12058 -webkit-transition: opacity 0.1s linear; 12062 12059 transition: opacity 0.1s linear; 12063 12060 } 12064 12061 … … 12098 12095 cursor: pointer; 12099 12096 outline: none; 12100 12097 position: relative; 12098 -webkit-transition: background 0.2s ease-in-out; 12101 12099 transition: background 0.2s ease-in-out; 12102 12100 } 12103 12101 … … 12201 12199 position: relative; 12202 12200 border-left: 1px solid #dfdfdf; 12203 12201 border-right: 1px solid #dfdfdf; 12204 12205 12202 -webkit-user-select: none; 12206 12203 -moz-user-select: none; 12204 -ms-user-select: none; 12207 12205 user-select: none; 12208 12206 } 12209 12207 … … 12430 12428 (min-resolution: 120dpi) { 12431 12429 tr.wp-locked .locked-indicator { 12432 12430 background-image: url('../images/lock-2x.png'); 12431 -webkit-background-size: 16px 16px; 12433 12432 background-size: 16px 16px; 12434 12433 } 12435 12434 12436 12435 #content-resize-handle, 12437 12436 #post-body .wp_themeSkin .mceStatusbar a.mceResize { 12438 12437 background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom; 12438 -webkit-background-size: 11px 11px; 12439 12439 background-size: 11px 11px; 12440 12440 } 12441 12441 … … 12447 12447 /* Back-compat for pre-3.8 */ 12448 12448 div.star-holder { 12449 12449 background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom left; 12450 -webkit-background-size: 21px 37px; 12450 12451 background-size: 21px 37px; 12451 12452 } 12452 12453 12453 12454 /* Back-compat for pre-3.8 */ 12454 12455 div.star-holder .star-rating { 12455 12456 background: url('../images/stars-2x.png?ver=20121108') repeat-x top left; 12457 -webkit-background-size: 21px 37px; 12456 12458 background-size: 21px 37px; 12457 12459 } 12458 12460 12459 12461 .wp-full-overlay .collapse-sidebar-arrow { 12460 12462 background-image: url('../images/arrows-2x.png'); 12463 -webkit-background-size: 15px 123px; 12461 12464 background-size: 15px 123px; 12462 12465 } 12463 12466 … … 12806 12809 padding-right: 10px; 12807 12810 z-index: 99999; 12808 12811 border: none; 12812 -webkit-box-sizing: border-box; 12813 -moz-box-sizing: border-box; 12809 12814 box-sizing: border-box; 12810 -moz-box-sizing: border-box;12811 12815 } 12812 12816 12813 12817 .wrap .icon32 + h2 { … … 13233 13237 display: block; 13234 13238 width: 100%; 13235 13239 max-width: none; 13240 -webkit-box-sizing: border-box; 13236 13241 -moz-box-sizing: border-box; 13237 13242 box-sizing: border-box; 13238 13243 } … … 13307 13312 13308 13313 /* Form Tables */ 13309 13314 .form-table { 13315 -webkit-box-sizing: border-box; 13310 13316 -moz-box-sizing: border-box; 13311 13317 box-sizing: border-box; 13312 13318 } … … 13344 13350 padding: 7px 10px; 13345 13351 display: block; 13346 13352 max-width: none; 13353 -webkit-box-sizing: border-box; 13354 -moz-box-sizing: border-box; 13347 13355 box-sizing: border-box; 13348 -moz-box-sizing: border-box;13349 13356 } 13350 13357 13351 13358 input[type=text].small-text, … … 13363 13370 13364 13371 #pass-strength-result { 13365 13372 width: 100%; 13373 -webkit-box-sizing: border-box; 13374 -moz-box-sizing: border-box; 13366 13375 box-sizing: border-box; 13367 -moz-box-sizing: border-box;13368 13376 padding: 8px; 13369 13377 } 13370 13378 … … 13634 13642 .wp-list-table.plugins .plugin-title, 13635 13643 .wp-list-table.plugins .theme-title, 13636 13644 .wp-list-table.plugins tbody th { 13645 -webkit-box-shadow: none; 13637 13646 box-shadow: none; 13638 -webkit-box-shadow: none;13639 13647 } 13640 13648 13641 13649 .plugins tbody { … … 13644 13652 13645 13653 .plugins tr.active + tr.inactive td.column-description { 13646 13654 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); 13647 -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);13648 -ms-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);13649 -o-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);13650 13655 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); 13651 13656 } 13652 13657 … … 13950 13955 border: none; 13951 13956 text-align: center; 13952 13957 text-decoration: none; 13958 -webkit-box-sizing: border-box; 13959 -moz-box-sizing: border-box; 13953 13960 box-sizing: border-box; 13954 -moz-box-sizing: border-box;13955 13961 } 13956 13962 } 13957 13963 -
src/wp-includes/css/admin-bar.css
8 8 text-transform: none; 9 9 letter-spacing: normal; 10 10 font: normal 13px/32px "Open Sans", sans-serif; 11 -webkit-border-radius: 0; 11 12 border-radius: 0; 12 13 -webkit-box-sizing: content-box; 13 -moz-box-sizing: 14 box-sizing: 14 -moz-box-sizing: content-box; 15 box-sizing: content-box; 15 16 -webkit-transition: none; 16 -moz-transition: none; 17 -o-transition: none; 18 transition: none; 17 transition: none; 19 18 -webkit-font-smoothing: subpixel-antialiased; /* Prevent Safari from switching to standard antialiasing on hover */ 20 19 } 21 20 … … 101 100 } 102 101 103 102 /* Prevent a Chrome bug that inadvertantly activates 104 :hover states on an element that touches the extreme 103 :hover states on an element that touches the extreme 105 104 top left corner of the viewport. See #18868 */ 106 105 #wpadminbar .quicklinks { 107 106 border-left: 1px solid transparent; … … 250 249 #wpadminbar .ab-item:before, 251 250 #wpadminbar #adminbarsearch:before { 252 251 position: relative; 253 -moz-transition: all .1s ease-in-out;254 252 -webkit-transition: all .1s ease-in-out; 255 253 transition: all .1s ease-in-out; 256 254 } … … 587 585 border: none; 588 586 outline: none; 589 587 cursor: pointer; 590 591 588 -webkit-box-shadow: none; 592 589 box-shadow: none; 593 590 -webkit-box-sizing: border-box; 594 591 -moz-box-sizing: border-box; 595 -webkit-box-sizing: border-box;596 -ms-box-sizing: border-box;597 592 box-sizing: border-box; 598 599 593 -webkit-transition-duration: 400ms; 594 transition-duration: 400ms; 600 595 -webkit-transition-property: width, background; 596 transition-property: width, background; 601 597 -webkit-transition-timing-function: ease; 602 -moz-transition-duration: 400ms; 603 -moz-transition-property: width, background; 604 -moz-transition-timing-function: ease; 605 -o-transition-duration: 400ms; 606 -o-transition-property: width, background; 607 -o-transition-timing-function: ease; 598 transition-timing-function: ease; 608 599 } 609 600 610 601 #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { … … 867 858 color: #999; 868 859 position: relative; 869 860 } 870 861 871 862 #wpadminbar > #wp-toolbar > #wp-admin-bar-root-default .ab-icon, 872 863 #wpadminbar .ab-icon, 873 864 #wpadminbar .ab-item:before { 874 865 padding: 0; 875 866 margin-right: 0; 876 867 } 877 868 878 869 #wpadminbar #wp-admin-bar-edit > .ab-item:before, 879 870 #wpadminbar #wp-admin-bar-my-sites > .ab-item:before, 880 871 #wpadminbar #wp-admin-bar-site-name > .ab-item:before, … … 1005 996 #wpadminbar li:hover ul li:hover ul li { 1006 997 display: list-item; 1007 998 } 1008 999 1009 1000 /* Override default min-width so dropdown lists aren't stretched 1010 1001 to 100% viewport width at responsive sizes. */ 1011 1002 #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper { 1012 min-width: intrinsic;1013 1003 min-width: -webkit-fit-content; 1014 1004 min-width: -moz-fit-content; 1015 1005 min-width: fit-content; … … 1040 1030 .network-admin #wpadminbar ul#wp-admin-bar-top-secondary > li#wp-admin-bar-my-account { 1041 1031 margin-right: 0; 1042 1032 } 1043 1033 1044 1034 /* Realign arrows on taller responsive submenus */ 1045 1035 1046 1036 #wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before { 1047 1037 top: 10px; 1048 1038 left: 0; … … 1054 1044 #wpadminbar { 1055 1045 position: absolute; 1056 1046 } 1057 1047 1058 1048 #wp-responsive-overlay { 1059 1049 position: fixed; 1060 1050 top: 0; … … 1077 1067 #wpadminbar #wp-admin-bar-wp-logo.menupop .ab-sub-wrapper { 1078 1068 margin-left: 0; 1079 1069 } 1080 1070 1081 1071 #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper { 1082 1072 margin: 0; 1083 1073 width: 100%; … … 1085 1075 left: auto; 1086 1076 position: relative; 1087 1077 } 1088 1078 1089 1079 #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper .ab-item { 1090 1080 font-size: 16px; 1091 1081 padding: 6px 15px 19px 30px; 1092 1082 } 1093 1083 1094 1084 #wpadminbar li:hover ul li ul li { 1095 1085 display: list-item; 1096 1086 } … … 1099 1089 #wpadminbar li#wp-admin-bar-updates { 1100 1090 display: none; 1101 1091 } 1102 1092 1103 1093 /* Make submenus full-width at this size */ 1104 1094 1105 1095 #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper { 1106 1096 position: static; 1107 1097 -webkit-box-shadow: none; -
src/wp-includes/css/buttons.css
48 48 cursor: pointer; 49 49 border-width: 1px; 50 50 border-style: solid; 51 -webkit-appearance: none; 51 52 -webkit-border-radius: 3px; 52 -webkit-appearance: none;53 53 border-radius: 3px; 54 54 white-space: nowrap; 55 55 -webkit-box-sizing: border-box; 56 -moz-box-sizing: 57 box-sizing: 56 -moz-box-sizing: border-box; 57 box-sizing: border-box; 58 58 } 59 59 60 60 /* Remove the dotted border on :focus and the extra padding in Firefox */ … … 107 107 .wp-core-ui input[type="reset"]:focus { 108 108 background: none; 109 109 border: none; 110 -moz-box-shadow: none;111 110 -webkit-box-shadow: none; 112 111 box-shadow: none; 113 112 padding: 0 2px 1px; … … 123 122 color: #555; 124 123 border-color: #cccccc; 125 124 background: #f7f7f7; 126 127 125 -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08); 128 126 box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08); 129 127 vertical-align: top; … … 159 157 background: #eee; 160 158 border-color: #999; 161 159 color: #333; 162 -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );160 -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 163 161 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 164 162 } 165 163 … … 173 171 color: #aaa !important; 174 172 border-color: #ddd !important; 175 173 -webkit-box-shadow: none !important; 176 box-shadow: 174 box-shadow: none !important; 177 175 text-shadow: 0 1px 0 #fff !important; 178 176 cursor: default; 179 177 } … … 184 182 185 183 .wp-core-ui .button-primary { 186 184 background: #2ea2cc; 187 border-color: #0074a2; 188 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5), 0 1px 0 rgba(0,0,0,.15);185 border-color: #0074a2; 186 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5), 0 1px 0 rgba(0,0,0,.15); 189 187 box-shadow: inset 0 1px 0 rgba(120,200,230,0.5), 0 1px 0 rgba(0,0,0,.15); 190 188 color: #fff; 191 189 text-decoration: none; … … 197 195 .wp-core-ui .button-primary:focus { 198 196 background: #1e8cbe; 199 197 border-color: #0074a2; 200 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);198 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6); 201 199 box-shadow: inset 0 1px 0 rgba(120,200,230,0.6); 202 200 color: #fff; 203 201 } … … 216 214 background: #1b7aa6; 217 215 border-color: #005684; 218 216 color: rgba(255,255,255,0.95); 219 -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);217 -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); 220 218 box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); 221 219 vertical-align: top; 222 220 } … … 229 227 background: #298cba !important; 230 228 border-color: #1b607f !important; 231 229 -webkit-box-shadow: none !important; 232 box-shadow: 230 box-shadow: none !important; 233 231 text-shadow: 0 -1px 0 rgba(0,0,0,0.1) !important; 234 232 cursor: default; 235 233 } … … 248 246 249 247 .wp-core-ui .button-group > .button { 250 248 display: inline-block; 249 -webkit-border-radius: 0; 251 250 border-radius: 0; 252 251 margin-right: -1px; 253 252 z-index: 10; … … 262 261 } 263 262 264 263 .wp-core-ui .button-group > .button:first-child { 264 -webkit-border-radius: 3px 0 0 3px; 265 265 border-radius: 3px 0 0 3px; 266 266 } 267 267 268 268 .wp-core-ui .button-group > .button:last-child { 269 -webkit-border-radius: 0 3px 3px 0; 269 270 border-radius: 0 3px 3px 0; 270 271 } 271 272 … … 288 289 height: auto; 289 290 margin-bottom: 4px; 290 291 } 291 292 292 293 #media-upload.wp-core-ui .button { 293 294 padding: 0 10px 1px; 294 295 height: 24px; … … 301 302 position: relative; 302 303 margin: 0 14px 0 10px; /* 14px right margin to match all other buttons */ 303 304 } 304 305 305 306 /* Reset responsive styles in Press This, Customizer */ 306 307 307 308 .wp-core-ui.wp-customizer .button, … … 316 317 margin: 0; 317 318 vertical-align: inherit; 318 319 } 319 320 320 321 /* Reset responsive styles on Log in button on iframed login form */ 321 322 322 323 .interim-login .button.button-large { 323 324 height: 30px; 324 325 line-height: 28px; 325 326 padding: 0 12px 2px; 326 327 } 327 328 328 329 } -
src/wp-includes/css/editor.css
5 5 div.mce-panel { 6 6 border: 0; 7 7 background: #fff; 8 -webkit-filter: none; 8 9 filter: none; 9 10 } 10 11 … … 32 33 .mce-toolbar .mce-btn { 33 34 border-color: transparent; 34 35 background: transparent; 36 -webkit-box-shadow: none; 35 37 box-shadow: none; 36 38 } 37 39 … … 41 43 margin: 0 1px; 42 44 -webkit-border-radius: 2px; 43 45 border-radius: 2px; 46 -webkit-filter: none; 44 47 filter: none; 45 48 } 46 49 47 50 #wp-fullscreen-buttons .mce-btn:hover, 48 51 .mce-toolbar .mce-btn-group .mce-btn:hover, 49 52 .mce-toolbar .mce-btn-group .mce-btn.mce-active { 53 -webkit-box-shadow: 0 0 transparent; 50 54 box-shadow: 0 0 transparent; 51 55 border-color: #bbb; 52 56 background: #eee; … … 79 83 } 80 84 81 85 .mce-toolbar .mce-btn-group .mce-btn.mce-listbox { 86 -webkit-border-radius: 0; 82 87 border-radius: 0; 83 88 direction: ltr; 84 89 background: #fff; 85 90 border: 1px solid #ddd; 86 91 -webkit-box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2); 87 box-shadow: 92 box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2); 88 93 } 89 94 90 95 .mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover { … … 295 300 outline: none; 296 301 display: block; 297 302 resize: vertical; 303 -webkit-box-sizing: border-box; 298 304 -moz-box-sizing: border-box; 299 -webkit-box-sizing: border-box;300 305 box-sizing: border-box; 301 306 } 302 307 … … 420 425 border-bottom-style: solid; 421 426 border-bottom-width: 1px; 422 427 -webkit-border-top-right-radius: 3px; 428 border-top-right-radius: 3px; 423 429 -webkit-border-top-left-radius: 3px; 424 border-top-right-radius: 3px;425 430 border-top-left-radius: 3px; 426 431 padding: 2px 8px 0; 427 432 min-height: 29px; … … 445 450 background: #eee; 446 451 background-image: -webkit-gradient(linear, left bottom, left top, from(#e3e3e3), to(#fff)); 447 452 background-image: -webkit-linear-gradient(bottom, #e3e3e3, #fff); 448 background-image: -moz-linear-gradient(bottom, #e3e3e3, #fff);449 background-image: -o-linear-gradient(bottom, #e3e3e3, #fff);450 453 background-image: linear-gradient(to top, #e3e3e3, #fff); 451 454 } 452 455 … … 529 532 530 533 #wp-link input[type="text"] { 531 534 -webkit-box-sizing: border-box; 535 -moz-box-sizing: border-box; 536 box-sizing: border-box; 532 537 } 533 538 534 539 #wp-link input[type="text"], … … 955 960 z-index: 300002; 956 961 border: 0; 957 962 -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.7); 958 box-shadow: 963 box-shadow: 0 5px 15px rgba(0,0,0,0.7); 959 964 background-color: #f5f5f5; 960 965 } 961 966 … … 1127 1132 bottom: 0; 1128 1133 left: 0; 1129 1134 right: 0; 1135 -webkit-filter: inherit; 1130 1136 filter: inherit; 1131 1137 } 1132 1138 … … 1160 1166 bottom: 30px; 1161 1167 top: 60px; 1162 1168 z-index: 150010; 1163 1169 1164 1170 } 1165 1171 1166 1172 .wp-fullscreen-wrap .wp-editor-container, … … 1287 1293 background: #f4f4f4; 1288 1294 background-image: -webkit-gradient(linear, left bottom, left top, from(#e4e4e4), to(#f9f9f9)); 1289 1295 background-image: -webkit-linear-gradient(bottom, #e4e4e4, #f9f9f9); 1290 background-image: -moz-linear-gradient(bottom, #e4e4e4, #f9f9f9);1291 background-image: -o-linear-gradient(bottom, #e4e4e4, #f9f9f9);1292 1296 background-image: linear-gradient(to top, #e4e4e4, #f9f9f9); 1293 1297 } 1294 1298 … … 1300 1304 background: #eee; 1301 1305 background-image: -webkit-gradient(linear, left top, left bottom, from(#e4e4e4), to(#f9f9f9)); 1302 1306 background-image: -webkit-linear-gradient(top, #e4e4e4, #f9f9f9); 1303 background-image: -moz-linear-gradient(top, #e4e4e4, #f9f9f9);1304 background-image: -o-linear-gradient(top, #e4e4e4, #f9f9f9);1305 1307 background-image: linear-gradient(to bottom, #e4e4e4, #f9f9f9); 1306 1308 } 1307 1309 1308 1310 #wp-fullscreen-modes a:first-child { 1309 1311 border-width: 1px; 1310 1312 -webkit-border-top-left-radius: 3px; 1313 border-top-left-radius: 3px; 1311 1314 -webkit-border-bottom-left-radius: 3px; 1312 border-top-left-radius: 3px;1313 1315 border-bottom-left-radius: 3px; 1314 1316 } 1315 1317 1316 1318 #wp-fullscreen-modes a:last-child { 1317 1319 -webkit-border-top-right-radius: 3px; 1320 border-top-right-radius: 3px; 1318 1321 -webkit-border-bottom-right-radius: 3px; 1319 border-top-right-radius: 3px;1320 1322 border-bottom-right-radius: 3px; 1321 1323 } 1322 1324 … … 1341 1343 line-height: 20px; 1342 1344 overflow: visible; 1343 1345 text-align: center; 1346 -webkit-box-sizing: border-box; 1344 1347 -moz-box-sizing: border-box; 1345 1348 box-sizing: border-box; 1346 1349 } … … 1480 1483 1481 1484 #wp-link .toggle-arrow { 1482 1485 background: transparent url('../images/toggle-arrow-2x.png') top left no-repeat; 1486 -webkit-background-size: 19px 69px; 1483 1487 background-size: 19px 69px; 1484 1488 } 1485 1489 } -
src/wp-includes/css/jquery-ui-dialog.css
255 255 z-index: 300002; 256 256 border: 0; 257 257 -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.7); 258 box-shadow: 258 box-shadow: 0 5px 15px rgba(0,0,0,0.7); 259 259 background-color: #f5f5f5; 260 260 } 261 261 -
src/wp-includes/css/media-views.css
3 3 */ 4 4 .media-modal * { 5 5 -webkit-box-sizing: content-box; 6 -moz-box-sizing: 7 box-sizing: 6 -moz-box-sizing: content-box; 7 box-sizing: content-box; 8 8 } 9 9 10 10 .media-modal, … … 57 57 .media-frame select { 58 58 font-family: "Open Sans", sans-serif; 59 59 font-size: 12px; 60 -webkit-box-sizing: border-box; 60 61 -moz-box-sizing: border-box; 61 -webkit-box-sizing: border-box;62 -ms-box-sizing: border-box; /* ie8 only */63 62 box-sizing: border-box; 64 63 border-width: 1px; 65 64 border-style: solid; … … 93 92 /* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */ 94 93 .ui-sortable, 95 94 .ui-draggable { 96 -ms-touch-action: none; 97 touch-action: none; 95 touch-action: none; 98 96 } 99 97 100 98 .meta-box-sortables.ui-sortable { 101 -ms-touch-action: auto; 102 touch-action: auto; 99 touch-action: auto; 103 100 } 104 101 105 102 .meta-box-sortables.ui-sortable .hndle { 106 -ms-touch-action: none; 107 touch-action: none; 103 touch-action: none; 108 104 } 109 105 110 106 /** … … 183 179 bottom: 0; 184 180 overflow: auto; 185 181 min-height: 300px; 182 -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.7); 186 183 box-shadow: 0 5px 15px rgba(0,0,0,0.7); 187 184 background: #fcfcfc; 188 185 -webkit-font-smoothing: subpixel-antialiased; … … 458 455 } 459 456 460 457 .media-router a { 461 -moz-transition: none;462 458 -webkit-transition: none; 463 transition: 459 transition: none; 464 460 } 465 461 466 462 .media-router > a { … … 592 588 593 589 .media-frame.hide-router .media-frame-title { 594 590 border-bottom: 1px solid #dfdfdf; 591 -webkit-box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 ); 595 592 box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 ); 596 593 } 597 594 … … 660 657 .attachment { 661 658 position: relative; 662 659 float: left; 663 664 660 padding: 0; 665 661 margin: 0 10px 20px; 666 662 color: #464646; 667 663 list-style: none; 668 664 text-align: center; 669 670 665 -webkit-user-select: none; 671 -moz-user-select: none; 672 -ms-user-select: none; 673 -o-user-select: none; 674 user-select: none; 666 -moz-user-select: none; 667 -ms-user-select: none; 668 user-select: none; 675 669 } 676 670 677 671 .selected.attachment { 672 -webkit-box-shadow: 673 0 0 0 1px #fff, 674 0 0 0 3px #ccc; 678 675 box-shadow: 679 676 0 0 0 1px #fff, 680 677 0 0 0 3px #ccc; … … 684 681 position: relative; 685 682 width: 199px; 686 683 height: 199px; 684 -webkit-box-shadow: 685 inset 0 0 15px rgba( 0, 0, 0, 0.1 ), 686 inset 0 0 0 1px rgba( 0, 0, 0, 0.05 ); 687 687 box-shadow: 688 688 inset 0 0 15px rgba( 0, 0, 0, 0.1 ), 689 689 inset 0 0 0 1px rgba( 0, 0, 0, 0.05 ); … … 716 716 left: 0; 717 717 right: 0; 718 718 bottom: 0; 719 -webkit-box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 ); 719 720 box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 ); 720 721 overflow: hidden; 721 722 } … … 734 735 width: 100%; 735 736 height: 100%; 736 737 -webkit-transform: translate( 50%, 50% ); 737 -moz-transform: translate( 50%, 50% ); 738 -ms-transform: translate( 50%, 50% ); 739 -o-transform: translate( 50%, 50% ); 740 transform: translate( 50%, 50% ); 738 -ms-transform: translate( 50%, 50% ); 739 transform: translate( 50%, 50% ); 741 740 } 742 741 743 742 .attachment .thumbnail .centered img { 744 743 -webkit-transform: translate( -50%, -50% ); 745 -moz-transform: translate( -50%, -50% ); 746 -ms-transform: translate( -50%, -50% ); 747 -o-transform: translate( -50%, -50% ); 748 transform: translate( -50%, -50% ); 744 -ms-transform: translate( -50%, -50% ); 745 transform: translate( -50%, -50% ); 749 746 } 750 747 751 748 .attachment .filename { … … 760 757 text-align: center; 761 758 font-weight: bold; 762 759 background: rgba( 255, 255, 255, 0.8 ); 760 -webkit-box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 ); 763 761 box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 ); 764 762 } 765 763 … … 792 790 background-color: #fff; 793 791 background-position: -96px 4px; 794 792 border-width: 0; 793 -webkit-border-radius: 3px; 795 794 border-radius: 3px; 795 -webkit-box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.3 ); 796 796 box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.3 ); 797 797 } 798 798 799 799 .attachment .close:hover { 800 -webkit-box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.6 ); 800 801 box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.6 ); 801 802 } 802 803 … … 813 814 right: -6px; 814 815 outline: none; 815 816 background: #eee; 817 -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba( 0, 0, 0, 0.4 ); 816 818 box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba( 0, 0, 0, 0.4 ); 817 819 } 818 820 … … 832 834 } 833 835 834 836 .attachment.details { 837 -webkit-box-shadow: 0 0 0 1px #fff, 838 0 0 0 5px #1e8cbe; 835 839 box-shadow: 0 0 0 1px #fff, 836 840 0 0 0 5px #1e8cbe; 837 841 } 838 842 839 843 .attachment.details .check { 840 844 background-color: #1e8cbe; 845 -webkit-box-shadow: 0 0 0 1px #fff, 846 0 0 0 2px #1e8cbe; 841 847 box-shadow: 0 0 0 1px #fff, 842 848 0 0 0 2px #1e8cbe; 843 849 } … … 857 863 margin: -1px 0 0; 858 864 padding: 8px; 859 865 font-size: 12px; 866 -webkit-border-radius: 0; 860 867 border-radius: 0; 861 868 } 862 869 … … 908 915 height: 10px; 909 916 width: 70%; 910 917 margin: 10px auto; 918 -webkit-border-radius: 10px; 911 919 border-radius: 10px; 912 920 background: #dfdfdf; 913 921 background: rgba( 0, 0, 0, 0.1 ); … … 918 926 min-width: 20px; 919 927 width: 0; 920 928 background: #1e8cbe; 929 -webkit-border-radius: 10px; 921 930 border-radius: 10px; 922 -webkit-transition: width 300ms; 923 -moz-transition: width 300ms; 924 -ms-transition: width 300ms; 925 -o-transition: width 300ms; 931 -webkit-transition: width 300ms; 926 932 transition: width 300ms; 927 933 } 928 934 … … 952 958 953 959 .media-sidebar .media-uploader-status { 954 960 border-bottom: 1px solid #dfdfdf; 961 -webkit-box-shadow: 0 1px 0 #fff; 955 962 box-shadow: 0 1px 0 #fff; 956 963 } 957 964 … … 1002 1009 padding: 8px; 1003 1010 border: 1px #c00 solid; 1004 1011 background: #ffebe8; 1012 -webkit-border-radius: 3px; 1005 1013 border-radius: 3px; 1006 1014 } 1007 1015 … … 1013 1021 background: #e00; 1014 1022 background-image: -webkit-gradient(linear, left top, left bottom, from(#e00), to(#a00)); 1015 1023 background-image: -webkit-linear-gradient(top, #e00, #a00); 1016 background-image: -moz-linear-gradient(top, #e00, #a00); 1017 background-image: -o-linear-gradient(top, #e00, #a00); 1018 background-image: linear-gradient(to bottom, #e00, #a00); 1024 background-image: linear-gradient(to bottom, #e00, #a00); 1025 -webkit-border-radius: 3px; 1019 1026 border-radius: 3px; 1020 1027 } 1021 1028 … … 1033 1040 right: 0; 1034 1041 bottom: 0; 1035 1042 background: rgba( 0, 86, 132, 0.9 ); 1036 1037 1043 z-index: 250000; 1038 1044 display: none; 1039 1045 text-align: center; 1040 1046 opacity: 0; 1041 1042 1047 -webkit-transition: opacity 250ms; 1043 -moz-transition: opacity 250ms; 1044 -ms-transition: opacity 250ms; 1045 -o-transition: opacity 250ms; 1046 transition: opacity 250ms; 1048 transition: opacity 250ms; 1047 1049 } 1048 1050 1049 1051 .uploader-window-content { … … 1062 1064 left: 0; 1063 1065 right: 0; 1064 1066 -webkit-transform: translateY( -50% ); 1065 -moz-transform: translateY( -50% ); 1066 -ms-transform: translateY( -50% ); 1067 -o-transform: translateY( -50% ); 1068 transform: translateY( -50% ); 1069 1067 -ms-transform: translateY( -50% ); 1068 transform: translateY( -50% ); 1070 1069 font-size: 40px; 1071 1070 color: #fff; 1072 1071 padding: 0; … … 1237 1236 } 1238 1237 1239 1238 .attachment.selection.selected { 1239 -webkit-box-shadow: none; 1240 1240 box-shadow: none; 1241 1241 } 1242 1242 1243 1243 .attachment.selection.details { 1244 -webkit-box-shadow: 1245 0 0 0 1px #fff, 1246 0 0 0 4px #1e8cbe; 1244 1247 box-shadow: 1245 1248 0 0 0 1px #fff, 1246 1249 0 0 0 4px #1e8cbe; 1247 1250 } 1248 1251 1249 1252 .media-selection .attachment.selection.details { 1253 -webkit-box-shadow: 1254 0 0 0 1px #fff, 1255 0 0 0 3px #1e8cbe; 1250 1256 box-shadow: 1251 1257 0 0 0 1px #fff, 1252 1258 0 0 0 3px #1e8cbe; … … 1260 1266 right: 0; 1261 1267 bottom: 0; 1262 1268 width: 25px; 1263 background-image: -webkit-gradient(linear, right top, left top, from( rgba( 255, 255, 255, 1 ) ), to( rgba( 255, 255, 255, 0 ) )); 1264 background-image: -webkit-linear-gradient(right, rgba( 255, 255, 255, 1 ) , rgba( 255, 255, 255, 0 ) ); 1265 background-image: -moz-linear-gradient(right, rgba( 255, 255, 255, 1 ) , rgba( 255, 255, 255, 0 ) ); 1266 background-image: -o-linear-gradient(right, rgba( 255, 255, 255, 1 ) , rgba( 255, 255, 255, 0 ) ); 1267 background-image: linear-gradient(to left, rgba( 255, 255, 255, 1 ) , rgba( 255, 255, 255, 0 ) ); 1269 background-image: -webkit-gradient(linear, right top, left top, from(rgba( 255, 255, 255, 1 )), to(rgba( 255, 255, 255, 0 ))); 1270 background-image: -webkit-linear-gradient(right, rgba( 255, 255, 255, 1 ), rgba( 255, 255, 255, 0 )); 1271 background-image: linear-gradient(to left, rgba( 255, 255, 255, 1 ) , rgba( 255, 255, 255, 0 ) ); 1268 1272 } 1269 1273 1270 1274 .media-selection .attachment .filename { … … 1277 1281 1278 1282 .media-frame .spinner { 1279 1283 background: url('../images/spinner.gif') no-repeat; 1284 -webkit-background-size: 20px 20px; 1280 1285 background-size: 20px 20px; 1281 1286 display: none; 1282 1287 opacity: 0.7; … … 1322 1327 line-height: 18px; 1323 1328 color: #666; 1324 1329 border-bottom: 1px solid #e5e5e5; 1330 -webkit-box-shadow: 0 1px 0 #fff; 1325 1331 box-shadow: 0 1px 0 #fff; 1326 1332 padding-bottom: 11px; 1327 1333 } … … 1345 1351 .uploading .attachment-info .thumbnail { 1346 1352 width: 120px; 1347 1353 height: 80px; 1354 -webkit-box-shadow: inset 0 0 15px rgba( 0, 0, 0, 0.1 ); 1348 1355 box-shadow: inset 0 0 15px rgba( 0, 0, 0, 0.1 ); 1349 1356 } 1350 1357 … … 1360 1367 left: 0; 1361 1368 right: 0; 1362 1369 bottom: 0; 1370 -webkit-box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 ); 1363 1371 box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 ); 1364 1372 overflow: hidden; 1365 1373 } … … 1438 1446 padding: 12px 14px; 1439 1447 width: 100%; 1440 1448 min-width: 200px; 1449 -webkit-box-shadow: inset 2px 2px 4px -2px rgba( 0, 0, 0, 0.1 ); 1441 1450 box-shadow: inset 2px 2px 4px -2px rgba( 0, 0, 0, 0.1 ); 1442 1451 } 1443 1452 … … 1486 1495 left: 0; 1487 1496 right: 0; 1488 1497 bottom: 0; 1498 -webkit-box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 ); 1489 1499 box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 ); 1490 1500 overflow: hidden; 1491 1501 } … … 1692 1702 .media-modal-close { 1693 1703 right: 10px; 1694 1704 } 1695 1705 1696 1706 /* Text inputs need to be 16px, or they force zooming on iOS */ 1697 1707 .media-frame input[type="text"], 1698 1708 .media-frame input[type="password"], … … 1740 1750 .media-frame-title { 1741 1751 display: none; 1742 1752 } 1743 1753 1744 1754 .media-frame-toolbar { 1745 1755 position: absolute; 1746 1756 bottom: 0px; … … 1765 1775 .attachment-details h3 { 1766 1776 margin-top: 45px; 1767 1777 } 1768 1778 1769 1779 /* Shorten right-side links so they don't overlap the close button */ 1770 1780 .media-menu a:nth-child(2), 1771 1781 .media-menu a:last-child { … … 1791 1801 top: 84px; 1792 1802 left: 0; 1793 1803 } 1794 1804 1795 1805 .media-frame-content { 1796 1806 left: 0; 1797 1807 top: 118px; … … 1800 1810 .media-frame .attachments-browser { 1801 1811 padding-bottom: 300px; 1802 1812 } 1803 1813 1804 1814 .media-sidebar { 1805 1815 border-bottom: 1px solid #dddddd; 1806 1816 } 1807 1817 1808 1818 .media-modal { 1809 1819 width: auto; 1810 1820 } … … 1910 1920 .media-frame-content { 1911 1921 top: 78px; 1912 1922 } 1913 1923 1914 1924 .attachments-browser .attachments { 1915 1925 top: 2px; 1916 1926 } … … 1938 1948 1939 1949 .media-modal-icon { 1940 1950 background-image: url(../images/uploader-icons-2x.png); 1951 -webkit-background-size: 134px 15px; 1941 1952 background-size: 134px 15px; 1942 1953 } 1943 1954 -
src/wp-includes/css/wp-auth-check.css
31 31 background-color: #eee; 32 32 z-index: 1000001; 33 33 -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.3); 34 box-shadow: 34 box-shadow: 0 3px 6px rgba(0,0,0,0.3); 35 35 } 36 36 37 37 #wp-auth-check-wrap.fallback #wp-auth-check { … … 41 41 42 42 #wp-auth-check-wrap #wp-auth-check-form { 43 43 background: url(../images/wpspin-2x.gif) no-repeat center center; 44 -webkit-background-size: 16px 16px; 44 45 background-size: 16px 16px; 45 46 height: 100%; 46 47 } … … 71 72 width: 22px; 72 73 color: #777; 73 74 -webkit-font-smoothing: antialiased !important; 75 -moz-osx-font-smoothing: grayscale; 74 76 } 75 77 76 78 #wp-auth-check-wrap .wp-auth-check-close:hover:before { … … 95 97 #wp-auth-check-wrap.fallback .wp-auth-fallback, 96 98 #wp-auth-check-wrap.fallback .wp-auth-check-close { 97 99 display: block; 98 } 99 No newline at end of file 100 } -
src/wp-includes/css/wp-pointer.css
5 5 background: #fff; 6 6 border: 1px solid #dfdfdf; 7 7 -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.075); 8 box-shadow: 8 box-shadow: 0 3px 6px rgba(0,0,0,0.075); 9 9 } 10 10 11 11 .wp-pointer-content h3 { … … 22 22 23 23 .wp-pointer-content h3:before { 24 24 background: #fff; 25 -webkit-border-radius: 50%; 25 26 border-radius: 50%; 26 27 color: #2ea2cc; 27 28 content: '\f227';