Ticket #27078: 27078.patch
File 27078.patch, 57.2 KB (added by , 11 years ago) |
---|
-
Gruntfile.js
152 152 src: [] 153 153 } 154 154 }, 155 autoprefixer: { 156 options: { 157 browsers: ['Firefox >= 20', 'Explorer >= 7', 'Chrome >= 20', 'Android >= 2.1', 'Opera >= 16.0', 'Safari >= 6.0'] 158 }, 159 core: { 160 expand: true, 161 cwd: BUILD_DIR, 162 dest: BUILD_DIR, 163 src: [ 164 'wp-admin/css/*.min.css', 165 'wp-includes/css/*.min.css', 166 // Third party styles 167 '!wp-includes/css/dashicons.min.css' 168 ] 169 }, 170 colors: { 171 expand: true, 172 cwd: BUILD_DIR, 173 dest: BUILD_DIR, 174 src: [ 175 'wp-admin/css/colors/*/*.min.css' 176 ] 177 } 178 }, 155 179 jshint: { 156 180 options: grunt.file.readJSON('.jshintrc'), 157 181 grunt: { … … 359 383 360 384 // Build task. 361 385 grunt.registerTask('build', ['clean:all', 'copy:all', 'cssmin:core', 'colors', 'rtl', 'cssmin:rtl', 'cssmin:colors', 362 'uglify:core', 'concat:tinymce', 'compress:tinymce', 'clean:tinymce', 'jsvalidate:build']); 386 'autoprefixer:core', 'autoprefixer:colors', 'uglify:core', 'concat:tinymce', 'compress:tinymce', 'clean:tinymce', 387 'jsvalidate:build']); 363 388 364 389 // Testing tasks. 365 390 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
17 17 position: relative; 18 18 top: 1px; 19 19 user-select: none; 20 -moz-user-select: none;21 -ms-user-select: none;22 -webkit-user-select: none;23 20 vertical-align: bottom; 24 21 display: inline-block; 25 22 padding-left: 30px; 26 27 -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.08);28 23 box-shadow: 0 1px 0 rgba(0,0,0,.08); 29 24 } 30 25 … … 42 37 right: 0; 43 38 text-align: center; 44 39 top: 0; 45 46 -webkit-box-shadow: inset 0 1px 0 #fff;47 40 box-shadow: inset 0 1px 0 #fff; 48 41 } 49 42 … … 74 67 75 68 .wp-color-result:focus { 76 69 border-color: #888; 77 -webkit-box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.2 );78 70 box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.2 ); 79 71 } 80 72 -
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: 0px 1px 1px -1px rgba(0, 0, 0, 0.1); 88 box-shadow: 0px 1px 1px -1px rgba(0, 0, 0, 0.1); 87 box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1); 89 88 } 90 89 91 90 #customize-theme-controls .control-section { … … 254 253 margin-right: 16px; 255 254 padding: 4px 5px; 256 255 border: 2px solid #eeeeee; 257 -webkit-user-select: none;258 -moz-user-select: none;259 256 user-select: none; 260 257 } 261 258 … … 422 419 .accordion-section .customize-control-upload .upload-dropzone.supports-drag-drop, 423 420 .accordion-section .customize-control-image .upload-dropzone.supports-drag-drop { 424 421 display: block; 425 -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; 422 transition: border-color 0.1s; 430 423 } 431 424 432 425 .accordion-section .customize-control-upload .library ul li, … … 469 462 font-size: 14px; 470 463 background: #555555; 471 464 border: 1px solid #dfdfdf; 472 -webkit-border-radius: 3px;473 465 border-radius: 3px; 474 466 } -
src/wp-admin/css/install.css
11 11 padding: 20px 20px 10px 20px; 12 12 max-width: 700px; 13 13 -webkit-font-smoothing: subpixel-antialiased; 14 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);15 14 box-shadow: 0 1px 3px rgba(0,0,0,0.13); 16 15 } 17 16 … … 99 98 border: 1px solid #dfdfdf; 100 99 font-family: "Open Sans", sans-serif; 101 100 width: 100%; 102 -moz-box-sizing: border-box;103 -webkit-box-sizing: border-box;104 -ms-box-sizing: border-box; /* ie8 only */105 101 box-sizing: border-box; 106 102 } 107 103 … … 305 301 display: block; 306 302 max-width: none; 307 303 box-sizing: border-box; 308 -moz-box-sizing: border-box;309 304 } 310 305 311 306 } -
src/wp-admin/css/wp-admin.css
226 226 color: #21759b; 227 227 z-index: 100000; 228 228 line-height: normal; 229 -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);230 229 box-shadow: 0 0 2px 2px rgba(0,0,0,.6); 231 230 text-decoration: none; 232 231 outline: none; … … 259 258 .feature-filter, 260 259 .imgedit-group { 261 260 border: 1px solid #e5e5e5; 262 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);263 261 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 264 262 } 265 263 … … 292 290 input[type="email"], 293 291 input[type="url"], 294 292 textarea { 295 -moz-box-sizing: border-box;296 -webkit-box-sizing: border-box;297 -ms-box-sizing: border-box; /* ie8 only */298 293 box-sizing: border-box; 299 294 } 300 295 … … 316 311 width: 16px; 317 312 min-width: 16px; 318 313 -webkit-appearance: none; 319 -webkit-box-sizing: border-box;320 314 box-sizing: border-box; 321 -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1); 322 box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1); 315 box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); 323 316 } 324 317 325 318 .wp-core-ui input[type="reset"]:hover, … … 351 344 input.disabled, 352 345 textarea:disabled, 353 346 textarea.disabled { 354 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.04); 355 box-shadow: inset 0 1px 2px rgba(0,0,0,0.04); 347 box-shadow: inset 0 1px 2px rgba(0,0,0,0.04); 356 348 border-color: rgba(222, 222, 222, .75); 357 349 background: rgba(255, 255, 255, .5); 358 350 color: rgba(51, 51, 51, .5); … … 491 483 492 484 a { 493 485 color: #0074a2; 494 -webkit-transition-property: border, background, color; 495 -moz-transition-property: border, background, color; 496 transition-property: border, background, color; 497 -webkit-transition-duration: .05s; 498 -moz-transition-duration: .05s; 499 transition-duration: .05s; 500 -webkit-transition-timing-function: ease-in-out; 501 -moz-transition-timing-function: ease-in-out; 502 transition-timing-function: ease-in-out; 486 transition-property: border, background, color; 487 transition-duration: .05s; 488 transition-timing-function: ease-in-out; 503 489 } 504 490 505 491 a, … … 880 866 border-left: 4px solid #7ad03a; 881 867 padding: 1px 12px; 882 868 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); 869 box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1); 886 870 } 887 871 888 872 div.error, 889 873 .login #login_error { 890 874 border-left: 4px solid #dd3d36; 891 875 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); 876 box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1); 895 877 } 896 878 897 879 div.error { … … 989 971 div#widgets-right .widget-top:hover, 990 972 #widgets-left .widget-top:hover { 991 973 border-color: #999; 992 -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);993 974 box-shadow: 0 1px 2px rgba(0,0,0,0.1); 994 975 } 995 976 … … 1140 1121 display: inline-block; 1141 1122 -webkit-font-smoothing: antialiased; 1142 1123 -moz-osx-font-smoothing: grayscale; 1143 -webkit-transition: all .1s ease-in-out; 1144 -moz-transition: all .1s ease-in-out; 1145 transition: all .1s ease-in-out; 1124 transition: all .1s ease-in-out; 1146 1125 } 1147 1126 1148 1127 .icon16.icon-dashboard:before, … … 1304 1283 .submit { 1305 1284 padding: 1.5em 0; 1306 1285 margin: 5px 0; 1307 -webkit-border-bottom-left-radius: 3px;1308 -webkit-border-bottom-right-radius: 3px;1309 1286 border-bottom-left-radius: 3px; 1310 1287 border-bottom-right-radius: 3px; 1311 1288 border: none; … … 1455 1432 top: 0; 1456 1433 text-decoration: none !important; 1457 1434 vertical-align: top; 1458 1459 1435 -webkit-font-smoothing: antialiased; 1460 1436 -moz-osx-font-smoothing: grayscale; 1461 1437 } … … 1660 1636 margin: 25px 20px 0 2px; 1661 1637 background-color: #fff; 1662 1638 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); 1639 box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1); 1666 1640 } 1667 1641 1668 1642 .update-message { … … 1756 1730 background-color: #fff; 1757 1731 border: 1px solid #ddd; 1758 1732 border-top: none; 1759 -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.025); 1760 box-shadow: 0 1px 0 rgba(0,0,0,.025); 1733 box-shadow: 0 1px 0 rgba(0,0,0,.025); 1761 1734 } 1762 1735 1763 1736 #screen-options-link-wrap, … … 1768 1741 border: 1px solid #ddd; 1769 1742 border-top: none; 1770 1743 background: #fff; 1771 -webkit-box-shadow: 0px 1px 1px -1px rgba(0,0,0,0.1); 1772 box-shadow: 0px 1px 1px -1px rgba(0,0,0,0.1); 1744 box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); 1773 1745 } 1774 1746 1775 1747 #screen-meta-links .screen-meta-toggle { … … 1789 1761 1790 1762 #screen-meta-links a:focus { 1791 1763 border-color: #aaa; 1792 -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.15); 1793 box-shadow: 0 2px 3px rgba(0,0,0,0.15); 1764 box-shadow: 0 2px 3px rgba(0,0,0,0.15); 1794 1765 } 1795 1766 1796 1767 #screen-meta-links a.show-settings { … … 1895 1866 1896 1867 #contextual-help-wrap.no-sidebar #contextual-help-back { 1897 1868 right: 0; 1898 1899 1869 border-right-width: 0; 1900 -webkit-border-bottom-right-radius: 2px;1901 1870 border-bottom-right-radius: 2px; 1902 1871 } 1903 1872 … … 1938 1907 margin: 0 -1px 0 0; 1939 1908 border-left: 2px solid #2ea2cc; 1940 1909 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); 1910 box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02); 1944 1911 } 1945 1912 1946 1913 .contextual-help-tabs .active a { … … 1987 1954 1988 1955 /* side admin menu */ 1989 1956 #adminmenu * { 1990 -webkit-user-select: none;1991 -moz-user-select: none;1992 1957 user-select: none; 1993 1958 } 1994 1959 … … 2033 1998 padding: 7px 0 8px; 2034 1999 z-index: 9999; 2035 2000 background-color: #333; 2036 2037 -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2); 2038 box-shadow: 0 3px 5px rgba(0,0,0,0.2); 2001 box-shadow: 0 3px 5px rgba(0,0,0,0.2); 2039 2002 } 2040 2003 2041 2004 #adminmenu .wp-submenu a, … … 2069 2032 bottom: auto; 2070 2033 border: 0 none; 2071 2034 margin-top: 0; 2072 -webkit-box-shadow: none;2073 2035 box-shadow: none; 2074 2036 background-color: #333; 2075 2037 } … … 2128 2090 .folded #adminmenu .wp-has-current-submenu li > a { 2129 2091 padding-right: 16px; 2130 2092 padding-left: 14px; 2131 -moz-transition: all .1s ease-in-out;2132 -webkit-transition: all .1s ease-in-out;2133 2093 transition: all .1s ease-in-out; 2134 2094 } 2135 2095 … … 2195 2155 display: inline-block; 2196 2156 -webkit-font-smoothing: antialiased; 2197 2157 -moz-osx-font-smoothing: grayscale; 2198 -moz-transition: all .1s ease-in-out;2199 -webkit-transition: all .1s ease-in-out;2200 2158 transition: all .1s ease-in-out; 2201 2159 } 2202 2160 … … 2362 2320 font-weight: 600; 2363 2321 margin: 1px 0 0 2px; 2364 2322 vertical-align: top; 2365 -webkit-border-radius: 10px;2366 2323 border-radius: 10px; 2367 2324 z-index: 26; 2368 2325 } … … 2390 2347 line-height: 34px; 2391 2348 margin-top: 10px; 2392 2349 color: #aaa; 2393 -webkit-transition: all .1s ease-in-out; 2394 -moz-transition: all .1s ease-in-out; 2395 transition: all .1s ease-in-out; 2350 transition: all .1s ease-in-out; 2396 2351 } 2397 2352 2398 2353 #collapse-menu:hover, … … 2415 2370 height: 15px; 2416 2371 margin: 10px 8px 10px 11px; 2417 2372 width: 15px; 2418 2419 -webkit-border-radius: 10px;2420 2373 border-radius: 10px; 2421 2374 } 2422 2375 … … 2438 2391 position: relative; 2439 2392 text-align: center; 2440 2393 width: 20px; 2441 -moz-transition: all .1s ease-in-out;2442 -webkit-transition: all .1s ease-in-out;2443 2394 transition: all .1s ease-in-out; 2444 2445 2395 -webkit-font-smoothing: antialiased; 2446 2396 -moz-osx-font-smoothing: grayscale; 2447 2397 } 2448 2398 2449 2399 .folded #collapse-button div:after, 2450 2400 .rtl #collapse-button div:after { 2451 -ms-transform: rotate(180deg);2452 -webkit-transform: rotate(180deg);2453 2401 transform: rotate(180deg); 2454 2402 } 2455 2403 2456 2404 .rtl.folded #collapse-button div:after { 2457 -ms-transform: none;2458 -webkit-transform: none;2459 2405 transform: none; 2460 2406 } 2461 2407 … … 2565 2511 } 2566 2512 2567 2513 .auto-fold #collapse-button div:after { 2568 -ms-transform: rotate(180deg);2569 -webkit-transform: rotate(180deg);2570 2514 transform: rotate(180deg); 2571 2515 } 2572 2516 2573 2517 .rtl.auto-fold #collapse-button div:after { 2574 -ms-transform: none;2575 -webkit-transform: none;2576 2518 transform: none; 2577 2519 } 2578 2520 … … 2614 2556 min-width: 0.7em; 2615 2557 padding: 0 6px; 2616 2558 display: inline-block; 2617 -webkit-border-radius: 5px;2618 2559 border-radius: 5px; 2619 2560 background-color: #bbb; 2620 2561 color: #fff; … … 2685 2626 2686 2627 html.wp-toolbar { 2687 2628 padding-top: 32px; 2688 -webkit-box-sizing: border-box;2689 -moz-box-sizing: border-box;2690 2629 box-sizing: border-box; 2691 2630 } 2692 2631 … … 2766 2705 } 2767 2706 2768 2707 .postbox-container .meta-box-sortables { 2769 -moz-box-sizing: border-box;2770 -webkit-box-sizing: border-box;2771 -ms-box-sizing: border-box;2772 2708 box-sizing: border-box; 2773 2709 } 2774 2710 … … 2993 2929 .postbox h3, 2994 2930 .stuffbox h3 { 2995 2931 margin-top: 1px; 2996 -webkit-user-select: none;2997 -moz-user-select: none;2998 2932 user-select: none; 2999 2933 } 3000 2934 … … 3026 2960 3027 2961 .postbox.closed h3 { 3028 2962 border: none; 3029 -webkit-box-shadow: none;3030 2963 box-shadow: none; 3031 2964 } 3032 2965 … … 3035 2968 } 3036 2969 3037 2970 .postbox table.widefat { 3038 -webkit-box-shadow: none;3039 2971 box-shadow: none; 3040 2972 } 3041 2973 … … 3108 3040 margin: 16px 0; 3109 3041 padding: 23px 10px 0; 3110 3042 border: 1px solid #e5e5e5; 3111 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04); 3112 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 3043 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 3113 3044 background: #fff; 3114 3045 font-size: 13px; 3115 3046 line-height: 2.1em; … … 3180 3111 position: absolute; 3181 3112 left: -18px; 3182 3113 margin-top: -2px; 3183 -webkit-transition: all .1s ease-in-out; 3184 -moz-transition: all .1s ease-in-out; 3185 transition: all .1s ease-in-out; 3114 transition: all .1s ease-in-out; 3186 3115 } 3187 3116 3188 3117 .wp-core-ui .welcome-panel .button.button-hero { … … 3496 3425 #dashboard_quick_press input, 3497 3426 #dashboard_quick_press textarea { 3498 3427 box-sizing: border-box; 3499 -moz-box-sizing:border-box;3500 -webkit-box-sizing:border-box;3501 3428 margin: 0; 3502 3429 } 3503 3430 … … 3869 3796 3870 3797 /* @todo: pick a consistent list table selector */ 3871 3798 .wp-list-table a { 3872 -moz-transition: none; 3873 -webkit-transition: none; 3874 transition: none; 3799 transition: none; 3875 3800 } 3876 3801 3877 3802 #the-list tr:last-child td, 3878 3803 #the-list tr:last-child th { 3879 3804 border-bottom: none !important; 3880 -webkit-box-shadow: none;3881 3805 box-shadow: none; 3882 3806 } 3883 3807 … … 4002 3926 } 4003 3927 4004 3928 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; 3929 transition: height 1s, opacity 0.5s; 4010 3930 } 4011 3931 4012 3932 .fixed .column-comments .sorting-indicator { … … 4665 4585 position: relative; 4666 4586 min-width: 255px; 4667 4587 border: 1px solid #e5e5e5; 4668 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04); 4669 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 4588 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 4670 4589 background: #fff; 4671 4590 } 4672 4591 … … 4843 4762 border: 1px solid #e5e5e5; 4844 4763 border-top: none; 4845 4764 background-color: #f7f7f7; 4846 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04); 4847 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 4765 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 4848 4766 } 4849 4767 4850 4768 #post-status-info td { … … 5118 5036 height: 0.7em; 5119 5037 top: 7px; 5120 5038 max-width: 70%; 5121 -moz-box-sizing: border-box;5122 -webkit-box-sizing: border-box;5123 5039 box-sizing: border-box; 5124 5040 background-color: #fff; 5125 5041 } … … 5128 5044 position: absolute; 5129 5045 height: 100%; 5130 5046 border-left: 1px solid #aaa; 5131 -moz-box-sizing: border-box;5132 -webkit-box-sizing: border-box;5133 5047 box-sizing: border-box; 5134 5048 } 5135 5049 … … 5164 5078 width: 100%; 5165 5079 top: 50%; 5166 5080 margin-left: -90px; 5167 -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; 5081 transition: opacity 0.5s; 5172 5082 filter: alpha(opacity=0); /* ie8 and earlier */ 5173 5083 } 5174 5084 … … 5188 5098 } 5189 5099 5190 5100 .revisions .diff { 5191 -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; 5101 transition: opacity 0.5s; 5196 5102 } 5197 5103 5198 5104 .revisions.loading .diff { … … 5449 5355 top: -20px; 5450 5356 width: 25px; 5451 5357 height: 25px; 5452 -webkit-transform: rotate(45deg); 5453 -moz-transform: rotate(45deg); 5454 -ms-transform: rotate(45deg); 5455 -o-transform: rotate(45deg); 5456 transform: rotate(45deg); 5358 transform: rotate(45deg); 5457 5359 } 5458 5360 5459 5361 .revisions-tooltip.flipped .revisions-tooltip-arrow > span { … … 5514 5416 top: -20px; 5515 5417 width: 25px; 5516 5418 height: 25px; 5517 -webkit-transform: rotate(45deg);5518 -moz-transform: rotate(45deg);5519 -ms-transform: rotate(45deg);5520 -o-transform: rotate(45deg);5521 5419 transform: rotate(45deg); 5522 5420 } 5523 5421 … … 5558 5456 .wp-slider .ui-slider-handle.focus { 5559 5457 background: #2ea2cc; 5560 5458 border: 1px solid #0074a2; 5561 -webkit-box-shadow: inset 0 1px 0 #78c8e6, 0 1px 0 rgba(0,0,0,.15);5562 5459 box-shadow: inset 0 1px 0 #78c8e6, 0 1px 0 rgba(0,0,0,.15); 5563 5460 } 5564 5461 … … 5571 5468 content: "\f229"; 5572 5469 font: normal 18px/1 'dashicons'; 5573 5470 speak: none; 5574 -webkit-font-smoothing: antialiased;5471 -webkit-font-smoothing: antialiased; 5575 5472 -moz-osx-font-smoothing: grayscale; 5576 5473 } 5577 5474 … … 5690 5587 .post-state-format:before, 5691 5588 .post-format-icon:before { 5692 5589 color: #ddd; 5693 -webkit-transition: all .1s ease-in-out; 5694 -moz-transition: all .1s ease-in-out; 5695 transition: all .1s ease-in-out; 5590 transition: all .1s ease-in-out; 5696 5591 } 5697 5592 5698 5593 a.post-state-format:hover:before, … … 5818 5713 } 5819 5714 5820 5715 #post-body ul.add-menu-item-tabs li.tabs { 5821 -webkit-border-top-left-radius: 3px;5822 -webkit-border-bottom-left-radius: 3px;5823 5716 border-top-left-radius: 3px; 5824 5717 border-bottom-left-radius: 3px; 5825 5718 } … … 6216 6109 margin-bottom: 2px; 6217 6110 border-radius: 22px; 6218 6111 background: #ddd; 6219 -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);6220 6112 box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1); 6221 6113 } 6222 6114 … … 6227 6119 margin-top: -22px; 6228 6120 border-radius: 22px; 6229 6121 background-color: #0074a2; 6230 -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);6231 6122 box-shadow: inset 0 0 2px rgba(0,0,0,0.3); 6232 6123 } 6233 6124 … … 6382 6273 border: 1px solid #ddd; 6383 6274 line-height: 1.8em; 6384 6275 word-spacing: 3px; 6385 -webkit-border-radius: 6px;6386 6276 border-radius: 6px; 6387 6277 } 6388 6278 … … 6830 6720 6831 6721 #replycontent { 6832 6722 height: 120px; 6833 -webkit-box-shadow: none;6834 6723 box-shadow: none; 6835 6724 } 6836 6725 … … 6916 6805 6917 6806 #the-comment-list th, 6918 6807 #the-comment-list td { 6919 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); 6920 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); 6808 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); 6921 6809 } 6922 6810 6923 6811 #the-comment-list tr:last-child th, 6924 6812 #the-comment-list tr:last-child td { 6925 -webkit-box-shadow: none;6926 6813 box-shadow: none; 6927 6814 } 6928 6815 … … 7001 6888 position: relative; 7002 6889 width: 30.6%; 7003 6890 border: 1px solid #dedede; 7004 -webkit-box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); 7005 box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); 7006 -webkit-box-sizing: border-box; 7007 -moz-box-sizing: border-box; 7008 box-sizing: border-box; 6891 box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); 6892 box-sizing: border-box; 7009 6893 } 7010 6894 7011 6895 .ie8 .theme-browser .theme { … … 7027 6911 font-weight: 600; 7028 6912 margin: 0; 7029 6913 padding: 15px; 7030 -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); 7031 box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); 6914 box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); 7032 6915 overflow: hidden; 7033 6916 white-space: nowrap; 7034 6917 text-overflow: ellipsis; … … 7040 6923 .theme-browser .theme .theme-actions { 7041 6924 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; 7042 6925 opacity: 0; 7043 -webkit-transition: opacity 0.1s ease-in-out; 7044 transition: opacity 0.1s ease-in-out; 6926 transition: opacity 0.1s ease-in-out; 7045 6927 position: absolute; 7046 6928 bottom: 0; 7047 6929 right: 0; … … 7075 6957 display: block; 7076 6958 overflow: hidden; 7077 6959 position: relative; 7078 -webkit-transition: opacity 0.2s ease-in-out; 7079 transition: opacity 0.2s ease-in-out; 6960 transition: opacity 0.2s ease-in-out; 7080 6961 } 7081 6962 7082 6963 .theme-browser .theme .theme-screenshot:after { … … 7092 6973 top: 0; 7093 6974 width: 100%; 7094 6975 -webkit-transform: translateZ( 0 ); /* Prevents rendering bugs in Chrome */ 7095 -webkit-transition: opacity 0.2s ease-in-out; 7096 transition: opacity 0.2s ease-in-out; 6976 transition: opacity 0.2s ease-in-out; 7097 6977 } 7098 6978 7099 6979 .theme-browser .theme:hover .theme-screenshot { … … 7121 7001 padding: 15px 12px; 7122 7002 text-align: center; 7123 7003 border-radius: 3px; 7124 -webkit-transition: opacity 0.1s ease-in-out; 7125 transition: opacity 0.1s ease-in-out; 7004 transition: opacity 0.1s ease-in-out; 7126 7005 } 7127 7006 .theme-browser .theme:focus { 7128 7007 outline: 1px dotted #222; … … 7191 7070 color: #fff; 7192 7071 padding-right: 110px; 7193 7072 font-weight: 300; 7194 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.5); 7195 box-shadow: inset 0 1px 1px rgba(0,0,0,0.5); 7073 box-shadow: inset 0 1px 1px rgba(0,0,0,0.5); 7196 7074 } 7197 7075 7198 7076 .theme-browser .theme.active .theme-name span { … … 7261 7139 text-shadow: none; 7262 7140 border: 5px dashed #d5d2ca; 7263 7141 border: 5px dashed rgba(0, 0, 0, 0.1); 7264 -webkit-transition: opacity 0.2s ease-in-out; 7265 transition: opacity 0.2s ease-in-out; 7266 -webkit-box-sizing: border-box; 7267 -moz-box-sizing: border-box; 7268 box-sizing: border-box; 7142 transition: opacity 0.2s ease-in-out; 7143 box-sizing: border-box; 7269 7144 } 7270 7145 7271 7146 .theme-browser .theme.add-new-theme span:after { … … 7456 7331 right: 30px; 7457 7332 bottom: 3%; 7458 7333 background: #fff; 7459 -webkit-box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1); 7460 box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1); 7334 box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1); 7461 7335 z-index: 20; 7462 7336 box-sizing: border-box; 7463 7337 } … … 7555 7429 /* First screenshot, shown big */ 7556 7430 .theme-overlay .screenshot { 7557 7431 border: 1px solid #fff; 7558 -webkit-box-sizing: border-box; 7559 -moz-box-sizing: border-box; 7560 box-sizing: border-box; 7432 box-sizing: border-box; 7561 7433 overflow: hidden; 7562 7434 position: relative; 7563 -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.2); 7564 box-shadow: 0 0 0 1px rgba(0,0,0,0.2); 7435 box-shadow: 0 0 0 1px rgba(0,0,0,0.2); 7565 7436 } 7566 7437 7567 7438 .theme-overlay .screenshot:after { … … 7646 7517 padding: 2px 8px; 7647 7518 border-radius: 2px; 7648 7519 margin: 0 0 -10px; 7649 -webkit-user-select: none; 7650 -moz-user-select: none; 7651 -ms-user-select: none; 7652 user-select: none; 7520 user-select: none; 7653 7521 } 7654 7522 7655 7523 .theme-overlay .theme-name { … … 7667 7535 float: none; 7668 7536 display: inline-block; 7669 7537 margin-left: 10px; 7670 -webkit-user-select: none; 7671 -moz-user-select: none; 7672 -ms-user-select: none; 7673 user-select: none; 7538 user-select: none; 7674 7539 } 7675 7540 7676 7541 .theme-overlay .theme-author { … … 8293 8158 .plugin-install #the-list td, 8294 8159 .upgrade .plugins td, 8295 8160 .upgrade .plugins th { 8296 -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 8297 box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 8161 box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 8298 8162 } 8299 8163 8300 8164 .plugins tr.active.plugin-update-tr + tr.inactive th, … … 8302 8166 .plugins tr.active + tr.inactive th, 8303 8167 .plugins tr.active + tr.inactive td { 8304 8168 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; 8169 box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1; 8308 8170 } 8309 8171 8310 8172 .plugins .update td, … … 8313 8175 .upgrade .plugins tr:last-of-type th, 8314 8176 .plugins tr.active + tr.inactive.update th, 8315 8177 .plugins tr.active + tr.inactive.update td { 8316 -webkit-box-shadow: none;8317 8178 box-shadow: none; 8318 8179 } 8319 8180 … … 8383 8244 .plugins .plugin-update { 8384 8245 padding: 0; 8385 8246 border: none; 8386 -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 8387 box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 8247 box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 8388 8248 } 8389 8249 8390 8250 /* update notices for active plugins */ … … 8434 8294 display: inline-block; 8435 8295 width: 24%; 8436 8296 padding: 5px 15px 15px; 8437 -moz-box-sizing: border-box;8438 8297 box-sizing: border-box; 8439 8298 margin-bottom: 3px; 8440 8299 } … … 8500 8359 cursor: move; 8501 8360 color: #333; 8502 8361 background: #e6e6e6; 8503 -webkit-border-radius: 5px;8504 8362 border-radius: 5px; 8505 8363 border: 1px solid #b4b4b4; 8506 8364 font-style: normal; … … 8514 8372 } 8515 8373 8516 8374 .pressthis a:hover:after { 8517 -webkit-transform: skew(20deg) rotate(9deg);8518 -moz-transform: skew(20deg) rotate(9deg);8519 8375 transform: skew(20deg) rotate(9deg); 8520 -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);8521 8376 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); 8522 8377 } 8523 8378 … … 8546 8401 right: 10px; 8547 8402 bottom: 9px; 8548 8403 background: transparent; 8549 8550 -webkit-transform: skew(20deg) rotate(6deg);8551 -moz-transform: skew(20deg) rotate(6deg);8552 8404 transform: skew(20deg) rotate(6deg); 8553 -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);8554 8405 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); 8555 8406 } 8556 8407 … … 8754 8605 display: inline-block; 8755 8606 width: 150px; 8756 8607 text-rendering: optimizeLegibility; 8757 8758 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2); 8759 box-shadow: 0 1px 3px rgba(0,0,0,0.2); 8608 box-shadow: 0 1px 3px rgba(0,0,0,0.2); 8760 8609 } 8761 8610 8762 8611 … … 8820 8669 .about-wrap .about-twentyfourteen img { 8821 8670 margin: 2em 0 0 0; 8822 8671 border: 1px solid #ddd; 8823 -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);8824 8672 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); 8825 8673 } 8826 8674 … … 8974 8822 } 8975 8823 8976 8824 .wp-full-overlay-sidebar { 8977 -webkit-box-sizing: border-box;8978 -moz-box-sizing: border-box;8979 8825 box-sizing: border-box; 8980 8826 position: fixed; 8981 8827 width: 300px; … … 9038 8884 z-index: 10; 9039 8885 margin: 0; 9040 8886 border-top: none; 9041 -webkit-box-shadow: none;9042 8887 box-shadow: none; 9043 8888 } 9044 8889 … … 9050 8895 bottom: 0; 9051 8896 border-bottom: none; 9052 8897 border-top: none; 9053 -webkit-box-shadow: none;9054 8898 box-shadow: none; 9055 8899 } 9056 8900 … … 9122 8966 9123 8967 .wp-full-overlay.collapsed .collapse-sidebar-arrow:before, 9124 8968 .rtl .wp-full-overlay .collapse-sidebar-arrow:before { 9125 -ms-transform: rotate(180deg);9126 -webkit-transform: rotate(180deg);9127 8969 transform: rotate(180deg); 9128 8970 } 9129 8971 9130 8972 .rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before { 9131 -ms-transform: none;9132 -webkit-transform: none;9133 8973 transform: none; 9134 8974 } 9135 8975 … … 9153 8993 .wp-full-overlay-sidebar, 9154 8994 .wp-full-overlay .collapse-sidebar, 9155 8995 .wp-full-overlay-main { 9156 -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; 9161 -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; 8996 transition-property: left, right, top, bottom, width, margin; 8997 transition-duration: 0.2s; 9166 8998 } 9167 8999 9168 9000 /*------------------------------------------------------------------------------ … … 9209 9041 height: 100%; 9210 9042 width: 100%; 9211 9043 z-index: 20; 9212 9213 -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; 9044 transition: opacity 0.3s; 9218 9045 } 9219 9046 9220 9047 #customize-container .collapse-sidebar { … … 9549 9376 border-top: 1px solid #f9f9f9; 9550 9377 border-bottom: 1px solid #dfdfdf; 9551 9378 background-color: #f9f9f9; 9552 -webkit-transition: none;9553 -moz-transition: none;9554 9379 transition: none; 9555 9380 } 9556 9381 … … 9569 9394 font-weight: normal; 9570 9395 padding-left: 6px; 9571 9396 padding-right: 6px; 9572 -webkit-border-top-left-radius: 3px;9573 -webkit-border-top-right-radius: 3px;9574 9397 border-top-left-radius: 3px; 9575 9398 border-top-right-radius: 3px; 9576 9399 border: 1px solid #dfdfdf; … … 9804 9627 } 9805 9628 9806 9629 #activity-widget #the-comment-list .comment { 9807 -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06); 9808 box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06); 9630 box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06); 9809 9631 } 9810 9632 9811 9633 #activity-widget .comments #the-comment-list .alt { … … 9934 9756 background-image: none; 9935 9757 border-color: #edc048; 9936 9758 color: #fff; 9937 -webkit-box-shadow: none;9938 9759 box-shadow: none; 9939 9760 } 9940 9761 … … 9947 9768 border-bottom-color: #f6e2ac; 9948 9769 background: transparent none; 9949 9770 color: #fff; 9950 -webkit-box-shadow: none;9951 9771 box-shadow: none; 9952 9772 } 9953 9773 … … 9995 9815 font-weight: normal; 9996 9816 overflow: hidden; 9997 9817 background: #fff; 9998 9999 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13); 10000 box-shadow: 0 1px 3px rgba(0,0,0,0.13); 9818 box-shadow: 0 1px 3px rgba(0,0,0,0.13); 10001 9819 } 10002 9820 10003 9821 .login form .forgetmenot { … … 10789 10607 z-index: 10; /* Keep .item-title's shadow from appearing on top of .menu-item-settings */ 10790 10608 border: 1px solid #e5e5e5; 10791 10609 border-top: none; 10792 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04); 10793 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 10610 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 10794 10611 } 10795 10612 10796 10613 .menu-item-settings .field-move a { … … 10946 10763 font-weight: normal; 10947 10764 font-style: normal; 10948 10765 vertical-align: top; 10949 -moz-transition: color .1s ease-in 0; 10950 -webkit-transition: color .1s ease-in 0; 10766 transition: color .1s ease-in 0; 10951 10767 text-align: center; 10952 10768 color: #0074a2; 10953 10769 } … … 10961 10777 } 10962 10778 10963 10779 .rtl .star-rating .star-half { 10964 -webkit-transform: rotateY(180deg); 10965 -ms-transform: rotateY(180deg); 10966 transform: rotateY(180deg); 10780 transform: rotateY(180deg); 10967 10781 } 10968 10782 10969 10783 .star-rating .star-empty:before { … … 11003 10817 padding-bottom: 0; 11004 10818 margin-bottom: 0; 11005 10819 margin-top: 10px; 11006 -webkit-border-top-left-radius: 3px;11007 -webkit-border-bottom-left-radius: 3px;11008 10820 border-top-left-radius: 3px; 11009 10821 border-bottom-left-radius: 3px; 11010 10822 } … … 11037 10849 11038 10850 #plugin-information .fyi h2.mainheader { 11039 10851 padding: 5px; 11040 -webkit-border-top-left-radius: 3px;11041 10852 border-top-left-radius: 3px; 11042 10853 background-color: #cee1ef; 11043 10854 } … … 11046 10857 padding: 10px 5px 10px 7px; 11047 10858 margin: 0; 11048 10859 list-style: none; 11049 -webkit-border-bottom-left-radius: 3px;11050 10860 border-bottom-left-radius: 3px; 11051 10861 background-color: #eaf3fa; 11052 10862 } … … 11129 10939 .press-this #header-logo { 11130 10940 float: left; 11131 10941 margin: 7px 7px 0; 11132 -webkit-user-select: none;11133 -moz-user-select: none;11134 10942 user-select: none; 11135 10943 } 11136 10944 … … 11167 10975 .press-this #title { 11168 10976 margin-left: 0; 11169 10977 margin-right: 0; 11170 -moz-box-sizing: border-box;11171 -webkit-box-sizing: border-box;11172 -ms-box-sizing: border-box;11173 10978 box-sizing: border-box; 11174 10979 } 11175 10980 … … 11613 11418 margin: 0 auto 10px; 11614 11419 position: relative; 11615 11420 box-sizing: border-box; 11616 -moz-box-sizing: border-box;11617 -webkit-box-sizing: border-box;11618 11421 } 11619 11422 11620 11423 .widget-top { … … 11635 11438 overflow: hidden; 11636 11439 white-space: nowrap; 11637 11440 text-overflow: ellipsis; 11638 -webkit-user-select: none;11639 -moz-user-select: none;11640 11441 user-select: none; 11641 11442 } 11642 11443 … … 11671 11472 margin: 0 auto 10px; 11672 11473 height: 45px; 11673 11474 width: 100%; 11674 -webkit-box-sizing: border-box;11675 -moz-box-sizing: border-box;11676 11475 box-sizing: border-box; 11677 11476 } 11678 11477 … … 11689 11488 /* Widget Sidebars */ 11690 11489 .sidebar-name { 11691 11490 position: relative; 11692 -webkit-box-sizing: border-box;11693 -moz-box-sizing: border-box;11694 11491 box-sizing: border-box; 11695 11492 } 11696 11493 … … 11766 11563 11767 11564 #widgets-left .widgets-holder-wrap { 11768 11565 border: none; 11769 -webkit-box-shadow: none;11770 11566 box-shadow: none; 11771 11567 } 11772 11568 … … 11926 11722 11927 11723 .widgets-holder-wrap .sidebar-name, 11928 11724 .widgets-holder-wrap .sidebar-description { 11929 -webkit-user-select: none;11930 -moz-user-select: none;11931 11725 user-select: none; 11932 11726 } 11933 11727 … … 12201 11995 position: relative; 12202 11996 border-left: 1px solid #dfdfdf; 12203 11997 border-right: 1px solid #dfdfdf; 12204 12205 -webkit-user-select: none;12206 -moz-user-select: none;12207 11998 user-select: none; 12208 11999 } 12209 12000 … … 12764 12555 display: block; 12765 12556 top: 0; 12766 12557 left: -1px; 12767 -webkit-box-shadow: none;12768 12558 box-shadow: none; 12769 12559 } 12770 12560 … … 12807 12597 z-index: 99999; 12808 12598 border: none; 12809 12599 box-sizing: border-box; 12810 -moz-box-sizing: border-box;12811 12600 } 12812 12601 12813 12602 .wrap .icon32 + h2 { … … 13233 13022 display: block; 13234 13023 width: 100%; 13235 13024 max-width: none; 13236 -moz-box-sizing: border-box;13237 13025 box-sizing: border-box; 13238 13026 } 13239 13027 … … 13307 13095 13308 13096 /* Form Tables */ 13309 13097 .form-table { 13310 -moz-box-sizing: border-box;13311 13098 box-sizing: border-box; 13312 13099 } 13313 13100 … … 13345 13132 display: block; 13346 13133 max-width: none; 13347 13134 box-sizing: border-box; 13348 -moz-box-sizing: border-box;13349 13135 } 13350 13136 13351 13137 input[type=text].small-text, … … 13364 13150 #pass-strength-result { 13365 13151 width: 100%; 13366 13152 box-sizing: border-box; 13367 -moz-box-sizing: border-box;13368 13153 padding: 8px; 13369 13154 } 13370 13155 … … 13635 13420 .wp-list-table.plugins .theme-title, 13636 13421 .wp-list-table.plugins tbody th { 13637 13422 box-shadow: none; 13638 -webkit-box-shadow: none;13639 13423 } 13640 13424 13641 13425 .plugins tbody { … … 13643 13427 } 13644 13428 13645 13429 .plugins tr.active + tr.inactive td.column-description { 13646 -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 13430 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); 13651 13431 } 13652 13432 … … 13736 13516 } 13737 13517 13738 13518 table.plugin-install #the-list td { 13739 -webkit-box-shadow: none;13740 13519 box-shadow: none; 13741 13520 } 13742 13521 13743 13522 table.plugin-install #the-list tr { 13744 13523 display: block; 13745 -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);13746 13524 box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 13747 13525 } 13748 13526 … … 13951 13729 text-align: center; 13952 13730 text-decoration: none; 13953 13731 box-sizing: border-box; 13954 -moz-box-sizing: border-box;13955 13732 } 13956 13733 } 13957 13734 -
src/wp-includes/css/admin-bar.css
9 9 letter-spacing: normal; 10 10 font: normal 13px/32px "Open Sans", sans-serif; 11 11 border-radius: 0; 12 -webkit-box-sizing: content-box; 13 -moz-box-sizing: content-box; 14 box-sizing: content-box; 15 -webkit-transition: none; 16 -moz-transition: none; 17 -o-transition: none; 18 transition: none; 12 box-sizing: content-box; 13 transition: none; 19 14 -webkit-font-smoothing: subpixel-antialiased; /* Prevent Safari from switching to standard antialiasing on hover */ 20 15 } 21 16 … … 101 96 } 102 97 103 98 /* Prevent a Chrome bug that inadvertantly activates 104 :hover states on an element that touches the extreme 99 :hover states on an element that touches the extreme 105 100 top left corner of the viewport. See #18868 */ 106 101 #wpadminbar .quicklinks { 107 102 border-left: 1px solid transparent; … … 140 135 #wpadminbar .shortlink-input { 141 136 margin: 0; 142 137 padding: 0; 143 -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2);144 138 box-shadow: 0 3px 5px rgba(0,0,0,0.2); 145 139 background: #333; 146 140 display: none; … … 250 244 #wpadminbar .ab-item:before, 251 245 #wpadminbar #adminbarsearch:before { 252 246 position: relative; 253 -moz-transition: all .1s ease-in-out;254 -webkit-transition: all .1s ease-in-out;255 247 transition: all .1s ease-in-out; 256 248 } 257 249 … … 326 318 position: relative; 327 319 right: auto; 328 320 margin: 0; 329 -webkit-box-shadow: none;330 321 box-shadow: none; 331 322 } 332 323 … … 347 338 padding: 2px 5px; 348 339 font-size: 10px; 349 340 font-weight: bold; 350 -webkit-border-radius: 10px;351 341 border-radius: 10px; 352 342 } 353 343 … … 362 352 363 353 #wpadminbar ul li:last-child, 364 354 #wpadminbar ul li:last-child .ab-item { 365 -webkit-box-shadow: none;366 355 box-shadow: none; 367 356 } 368 357 … … 587 576 border: none; 588 577 outline: none; 589 578 cursor: pointer; 590 591 -webkit-box-shadow: none;592 579 box-shadow: none; 593 594 -moz-box-sizing: border-box;595 -webkit-box-sizing: border-box;596 -ms-box-sizing: border-box;597 580 box-sizing: border-box; 598 599 -webkit-transition-duration: 400ms; 600 -webkit-transition-property: width, background; 601 -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; 581 transition-duration: 400ms; 582 transition-property: width, background; 583 transition-timing-function: ease; 608 584 } 609 585 610 586 #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { … … 689 665 z-index: 100000; 690 666 line-height: normal; 691 667 text-decoration: none; 692 -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);693 668 box-shadow: 0 0 2px 2px rgba(0,0,0,.6); 694 669 } 695 670 … … 867 842 color: #999; 868 843 position: relative; 869 844 } 870 845 871 846 #wpadminbar > #wp-toolbar > #wp-admin-bar-root-default .ab-icon, 872 847 #wpadminbar .ab-icon, 873 848 #wpadminbar .ab-item:before { 874 849 padding: 0; 875 850 margin-right: 0; 876 851 } 877 852 878 853 #wpadminbar #wp-admin-bar-edit > .ab-item:before, 879 854 #wpadminbar #wp-admin-bar-my-sites > .ab-item:before, 880 855 #wpadminbar #wp-admin-bar-site-name > .ab-item:before, … … 1005 980 #wpadminbar li:hover ul li:hover ul li { 1006 981 display: list-item; 1007 982 } 1008 983 1009 984 /* Override default min-width so dropdown lists aren't stretched 1010 985 to 100% viewport width at responsive sizes. */ 1011 986 #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper { 1012 min-width: intrinsic;1013 min-width: -webkit-fit-content;1014 min-width: -moz-fit-content;1015 987 min-width: fit-content; 1016 988 } 1017 989 … … 1040 1012 .network-admin #wpadminbar ul#wp-admin-bar-top-secondary > li#wp-admin-bar-my-account { 1041 1013 margin-right: 0; 1042 1014 } 1043 1015 1044 1016 /* Realign arrows on taller responsive submenus */ 1045 1017 1046 1018 #wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before { 1047 1019 top: 10px; 1048 1020 left: 0; … … 1054 1026 #wpadminbar { 1055 1027 position: absolute; 1056 1028 } 1057 1029 1058 1030 #wp-responsive-overlay { 1059 1031 position: fixed; 1060 1032 top: 0; … … 1077 1049 #wpadminbar #wp-admin-bar-wp-logo.menupop .ab-sub-wrapper { 1078 1050 margin-left: 0; 1079 1051 } 1080 1052 1081 1053 #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper { 1082 1054 margin: 0; 1083 1055 width: 100%; … … 1085 1057 left: auto; 1086 1058 position: relative; 1087 1059 } 1088 1060 1089 1061 #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper .ab-item { 1090 1062 font-size: 16px; 1091 1063 padding: 6px 15px 19px 30px; 1092 1064 } 1093 1065 1094 1066 #wpadminbar li:hover ul li ul li { 1095 1067 display: list-item; 1096 1068 } … … 1099 1071 #wpadminbar li#wp-admin-bar-updates { 1100 1072 display: none; 1101 1073 } 1102 1074 1103 1075 /* Make submenus full-width at this size */ 1104 1076 1105 1077 #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper { 1106 1078 position: static; 1107 -webkit-box-shadow: none;1108 1079 box-shadow: none; 1109 1080 } 1110 1081 } -
src/wp-includes/css/buttons.css
48 48 cursor: pointer; 49 49 border-width: 1px; 50 50 border-style: solid; 51 -webkit-border-radius: 3px;52 51 -webkit-appearance: none; 53 52 border-radius: 3px; 54 53 white-space: nowrap; 55 -webkit-box-sizing: border-box; 56 -moz-box-sizing: border-box; 57 box-sizing: border-box; 54 box-sizing: border-box; 58 55 } 59 56 60 57 /* Remove the dotted border on :focus and the extra padding in Firefox */ … … 107 104 .wp-core-ui input[type="reset"]:focus { 108 105 background: none; 109 106 border: none; 110 -moz-box-shadow: none;111 -webkit-box-shadow: none;112 107 box-shadow: none; 113 108 padding: 0 2px 1px; 114 109 width: auto; … … 123 118 color: #555; 124 119 border-color: #cccccc; 125 120 background: #f7f7f7; 126 127 -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08);128 121 box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08); 129 122 vertical-align: top; 130 123 } … … 147 140 .wp-core-ui .button.focus, 148 141 .wp-core-ui .button:focus, 149 142 .wp-core-ui .button-secondary:focus { 150 -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.2);151 143 box-shadow: 1px 1px 1px rgba(0,0,0,.2); 152 144 } 153 145 … … 159 151 background: #eee; 160 152 border-color: #999; 161 153 color: #333; 162 -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );163 154 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 164 155 } 165 156 … … 172 163 .wp-core-ui .button-disabled { 173 164 color: #aaa !important; 174 165 border-color: #ddd !important; 175 -webkit-box-shadow: none !important; 176 box-shadow: none !important; 166 box-shadow: none !important; 177 167 text-shadow: 0 1px 0 #fff !important; 178 168 cursor: default; 179 169 } … … 184 174 185 175 .wp-core-ui .button-primary { 186 176 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); 177 border-color: #0074a2; 189 178 box-shadow: inset 0 1px 0 rgba(120,200,230,0.5), 0 1px 0 rgba(0,0,0,.15); 190 179 color: #fff; 191 180 text-decoration: none; … … 197 186 .wp-core-ui .button-primary:focus { 198 187 background: #1e8cbe; 199 188 border-color: #0074a2; 200 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);201 189 box-shadow: inset 0 1px 0 rgba(120,200,230,0.6); 202 190 color: #fff; 203 191 } … … 205 193 .wp-core-ui .button-primary.focus, 206 194 .wp-core-ui .button-primary:focus { 207 195 border-color: #0e3950; 208 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 1px 1px 2px rgba(0,0,0,0.4);209 196 box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 1px 1px 2px rgba(0,0,0,0.4); 210 197 } 211 198 … … 216 203 background: #1b7aa6; 217 204 border-color: #005684; 218 205 color: rgba(255,255,255,0.95); 219 -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);220 206 box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); 221 207 vertical-align: top; 222 208 } … … 228 214 color: #94cde7 !important; 229 215 background: #298cba !important; 230 216 border-color: #1b607f !important; 231 -webkit-box-shadow: none !important; 232 box-shadow: none !important; 217 box-shadow: none !important; 233 218 text-shadow: 0 -1px 0 rgba(0,0,0,0.1) !important; 234 219 cursor: default; 235 220 } … … 288 273 height: auto; 289 274 margin-bottom: 4px; 290 275 } 291 276 292 277 #media-upload.wp-core-ui .button { 293 278 padding: 0 10px 1px; 294 279 height: 24px; … … 301 286 position: relative; 302 287 margin: 0 14px 0 10px; /* 14px right margin to match all other buttons */ 303 288 } 304 289 305 290 /* Reset responsive styles in Press This, Customizer */ 306 291 307 292 .wp-core-ui.wp-customizer .button, … … 316 301 margin: 0; 317 302 vertical-align: inherit; 318 303 } 319 304 320 305 /* Reset responsive styles on Log in button on iframed login form */ 321 306 322 307 .interim-login .button.button-large { 323 308 height: 30px; 324 309 line-height: 28px; 325 310 padding: 0 12px 2px; 326 311 } 327 312 328 313 } -
src/wp-includes/css/editor.css
39 39 .mce-toolbar .mce-btn-group .mce-btn { 40 40 border: 1px solid transparent; 41 41 margin: 0 1px; 42 -webkit-border-radius: 2px;43 42 border-radius: 2px; 44 43 filter: none; 45 44 } … … 50 49 box-shadow: 0 0 transparent; 51 50 border-color: #bbb; 52 51 background: #eee; 53 background-image: -webkit-gradient(linear, left bottom, left top, from(#e5e5e5), to(#fff));54 background-image: -webkit-linear-gradient(bottom, #e5e5e5, #fff);55 52 background-image: linear-gradient(to top, #e5e5e5, #fff); 56 53 } 57 54 … … 83 80 direction: ltr; 84 81 background: #fff; 85 82 border: 1px solid #ddd; 86 -webkit-box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2); 87 box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2); 83 box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2); 88 84 } 89 85 90 86 .mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover { … … 295 291 outline: none; 296 292 display: block; 297 293 resize: vertical; 298 -moz-box-sizing: border-box;299 -webkit-box-sizing: border-box;300 294 box-sizing: border-box; 301 295 } 302 296 … … 307 301 .wp-editor-container textarea.wp-editor-area { 308 302 width: 100%; 309 303 margin: 0; 310 -webkit-box-shadow: none;311 304 box-shadow: none; 312 305 } 313 306 … … 419 412 .quicktags-toolbar { 420 413 border-bottom-style: solid; 421 414 border-bottom-width: 1px; 422 -webkit-border-top-right-radius: 3px;423 -webkit-border-top-left-radius: 3px;424 415 border-top-right-radius: 3px; 425 416 border-top-left-radius: 3px; 426 417 padding: 2px 8px 0; … … 440 431 font: 12px/18px "Open Sans", sans-serif; 441 432 color: #464646; 442 433 border: 1px solid #c3c3c3; 443 -webkit-border-radius: 3px;444 434 border-radius: 3px; 445 435 background: #eee; 446 background-image: -webkit-gradient(linear, left bottom, left top, from(#e3e3e3), to(#fff));447 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 436 background-image: linear-gradient(to top, #e3e3e3, #fff); 451 437 } 452 438 … … 498 484 padding: 2px; 499 485 border-width: 1px; 500 486 border-style: solid; 501 -webkit-border-radius: 3px;502 487 border-radius: 3px; 503 488 } 504 489 … … 528 513 } 529 514 530 515 #wp-link input[type="text"] { 531 -webkit-box-sizing: border-box;516 box-sizing: border-box; 532 517 } 533 518 534 519 #wp-link input[type="text"], 535 520 #wp-link textarea { 536 521 border-width: 1px; 537 522 border-style: solid; 538 -webkit-border-radius: 4px;539 523 border-radius: 4px; 540 524 font-size: 12px; 541 525 margin: 1px; … … 954 938 padding: 0; 955 939 z-index: 300002; 956 940 border: 0; 957 -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.7); 958 box-shadow: 0 5px 15px rgba(0,0,0,0.7); 941 box-shadow: 0 5px 15px rgba(0,0,0,0.7); 959 942 background-color: #f5f5f5; 960 943 } 961 944 … … 1160 1143 bottom: 30px; 1161 1144 top: 60px; 1162 1145 z-index: 150010; 1163 1146 1164 1147 } 1165 1148 1166 1149 .wp-fullscreen-wrap .wp-editor-container, … … 1177 1160 1178 1161 #wp-fullscreen-status { 1179 1162 margin: auto; 1180 -webkit-transition: opacity 0.4s;1181 1163 transition: opacity 0.4s; 1182 1164 } 1183 1165 1184 1166 .wp-fullscreen-active .wp-fullscreen-title, 1185 1167 .wp-fullscreen-active .wp-fullscreen-title:focus, 1186 1168 .wp-fullscreen-active .wp-editor-container { 1187 -webkit-border-radius: 0;1188 1169 border-radius: 0; 1189 1170 border: 1px dashed transparent; 1190 1171 background: transparent; 1191 -webkit-box-shadow: none;1192 1172 box-shadow: none; 1193 -webkit-transition: border-color 0.4s;1194 1173 transition: border-color 0.4s; 1195 1174 } 1196 1175 … … 1226 1205 top: 0; 1227 1206 width: 100%; 1228 1207 z-index: 150050; 1229 -webkit-transition: opacity 0.4s;1230 1208 transition: opacity 0.4s; 1231 1209 } 1232 1210 … … 1285 1263 text-shadow: 0 1px 0 #fff; 1286 1264 background-color: #f4f4f4; 1287 1265 background: #f4f4f4; 1288 background-image: -webkit-gradient(linear, left bottom, left top, from(#e4e4e4), to(#f9f9f9));1289 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 1266 background-image: linear-gradient(to top, #e4e4e4, #f9f9f9); 1293 1267 } 1294 1268 … … 1298 1272 color: #333; 1299 1273 border-color: #999; 1300 1274 background: #eee; 1301 background-image: -webkit-gradient(linear, left top, left bottom, from(#e4e4e4), to(#f9f9f9));1302 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 1275 background-image: linear-gradient(to bottom, #e4e4e4, #f9f9f9); 1306 1276 } 1307 1277 1308 1278 #wp-fullscreen-modes a:first-child { 1309 1279 border-width: 1px; 1310 -webkit-border-top-left-radius: 3px;1311 -webkit-border-bottom-left-radius: 3px;1312 1280 border-top-left-radius: 3px; 1313 1281 border-bottom-left-radius: 3px; 1314 1282 } 1315 1283 1316 1284 #wp-fullscreen-modes a:last-child { 1317 -webkit-border-top-right-radius: 3px;1318 -webkit-border-bottom-right-radius: 3px;1319 1285 border-top-right-radius: 3px; 1320 1286 border-bottom-right-radius: 3px; 1321 1287 } … … 1341 1307 line-height: 20px; 1342 1308 overflow: visible; 1343 1309 text-align: center; 1344 -moz-box-sizing: border-box;1345 1310 box-sizing: border-box; 1346 1311 } 1347 1312 … … 1394 1359 1395 1360 .wp-fullscreen-active #wp-fullscreen-status, 1396 1361 .wp-fullscreen-active #fullscreen-topbar { 1397 -webkit-transition-duration: 0.8s;1398 1362 transition-duration: 0.8s; 1399 1363 opacity: 0; 1400 1364 filter: alpha(opacity=0); … … 1402 1366 1403 1367 .wp-fullscreen-active.wp-dfw-show-ui #wp-fullscreen-status, 1404 1368 .wp-fullscreen-active.wp-dfw-show-ui #fullscreen-topbar { 1405 -webkit-transition-duration: 0.4s;1406 1369 transition-duration: 0.4s; 1407 1370 opacity: 1; 1408 1371 filter: alpha(opacity=100); … … 1410 1373 1411 1374 .wp-fullscreen-active .wp-fullscreen-title, 1412 1375 .wp-fullscreen-active .wp-editor-container { 1413 -webkit-transition-duration: 0.8s;1414 1376 transition-duration: 0.8s; 1415 1377 border-color: transparent; 1416 1378 } 1417 1379 1418 1380 .wp-fullscreen-active.wp-dfw-show-ui .wp-fullscreen-title, 1419 1381 .wp-fullscreen-active.wp-dfw-show-ui .wp-editor-container { 1420 -webkit-transition-duration: 0.4s;1421 1382 transition-duration: 0.4s; 1422 1383 border-color: #ccc; 1423 1384 } … … 1427 1388 .fade-400, 1428 1389 .fade-300 { 1429 1390 opacity: 0; 1430 -webkit-transition-property: opacity;1431 1391 transition-property: opacity; 1432 1392 } 1433 1393 1434 1394 .fade-1000 { 1435 -webkit-transition-duration: 1s;1436 1395 transition-duration: 1s; 1437 1396 } 1438 1397 1439 1398 .fade-600 { 1440 -webkit-transition-duration: 0.6s;1441 1399 transition-duration: 0.6s; 1442 1400 } 1443 1401 1444 1402 .fade-400 { 1445 -webkit-transition-duration: 0.4s;1446 1403 transition-duration: 0.4s; 1447 1404 } 1448 1405 1449 1406 .fade-300 { 1450 -webkit-transition-duration: 0.3s;1451 1407 transition-duration: 0.3s; 1452 1408 } 1453 1409 -
src/wp-includes/css/jquery-ui-dialog.css
254 254 padding: 0; 255 255 z-index: 300002; 256 256 border: 0; 257 -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.7); 258 box-shadow: 0 5px 15px rgba(0,0,0,0.7); 257 box-shadow: 0 5px 15px rgba(0,0,0,0.7); 259 258 background-color: #f5f5f5; 260 259 } 261 260 -
src/wp-includes/css/media-views.css
2 2 * Base Styles 3 3 */ 4 4 .media-modal * { 5 -webkit-box-sizing: content-box; 6 -moz-box-sizing: content-box; 7 box-sizing: content-box; 5 box-sizing: content-box; 8 6 } 9 7 10 8 .media-modal, … … 57 55 .media-frame select { 58 56 font-family: "Open Sans", sans-serif; 59 57 font-size: 12px; 60 -moz-box-sizing: border-box;61 -webkit-box-sizing: border-box;62 -ms-box-sizing: border-box; /* ie8 only */63 58 box-sizing: border-box; 64 59 border-width: 1px; 65 60 border-style: solid; … … 93 88 /* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */ 94 89 .ui-sortable, 95 90 .ui-draggable { 96 -ms-touch-action: none; 97 touch-action: none; 91 touch-action: none; 98 92 } 99 93 100 94 .meta-box-sortables.ui-sortable { 101 -ms-touch-action: auto; 102 touch-action: auto; 95 touch-action: auto; 103 96 } 104 97 105 98 .meta-box-sortables.ui-sortable .hndle { 106 -ms-touch-action: none; 107 touch-action: none; 99 touch-action: none; 108 100 } 109 101 110 102 /** … … 404 396 border-right-width: 1px; 405 397 border-right-style: solid; 406 398 border-right-color: #ccc; 407 -webkit-user-select: none;408 -moz-user-select: none;409 -ms-user-select: none;410 399 user-select: none; 411 400 } 412 401 … … 451 440 padding: 0 6px; 452 441 margin: 0; 453 442 clear: both; 454 -webkit-user-select: none;455 -moz-user-select: none;456 -ms-user-select: none;457 443 user-select: none; 458 444 } 459 445 460 446 .media-router a { 461 -moz-transition: none; 462 -webkit-transition: none; 463 transition: none; 447 transition: none; 464 448 } 465 449 466 450 .media-router > a { … … 660 644 .attachment { 661 645 position: relative; 662 646 float: left; 663 664 647 padding: 0; 665 648 margin: 0 10px 20px; 666 649 color: #464646; 667 650 list-style: none; 668 651 text-align: center; 669 670 -webkit-user-select: none; 671 -moz-user-select: none; 672 -ms-user-select: none; 673 -o-user-select: none; 674 user-select: none; 652 user-select: none; 675 653 } 676 654 677 655 .selected.attachment { … … 733 711 left: 0; 734 712 width: 100%; 735 713 height: 100%; 736 -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% ); 714 transform: translate( 50%, 50% ); 741 715 } 742 716 743 717 .attachment .thumbnail .centered img { 744 -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% ); 718 transform: translate( -50%, -50% ); 749 719 } 750 720 751 721 .attachment .filename { … … 919 889 width: 0; 920 890 background: #1e8cbe; 921 891 border-radius: 10px; 922 -webkit-transition: width 300ms;923 -moz-transition: width 300ms;924 -ms-transition: width 300ms;925 -o-transition: width 300ms;926 892 transition: width 300ms; 927 893 } 928 894 … … 1011 977 font-weight: bold; 1012 978 color: #fff; 1013 979 background: #e00; 1014 background-image: -webkit-gradient(linear, left top, left bottom, from(#e00), to(#a00)); 1015 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); 980 background-image: linear-gradient(to bottom, #e00, #a00); 1019 981 border-radius: 3px; 1020 982 } 1021 983 … … 1033 995 right: 0; 1034 996 bottom: 0; 1035 997 background: rgba( 0, 86, 132, 0.9 ); 1036 1037 998 z-index: 250000; 1038 999 display: none; 1039 1000 text-align: center; 1040 1001 opacity: 0; 1041 1042 -webkit-transition: opacity 250ms; 1043 -moz-transition: opacity 250ms; 1044 -ms-transition: opacity 250ms; 1045 -o-transition: opacity 250ms; 1046 transition: opacity 250ms; 1002 transition: opacity 250ms; 1047 1003 } 1048 1004 1049 1005 .uploader-window-content { … … 1061 1017 top: 50%; 1062 1018 left: 0; 1063 1019 right: 0; 1064 -webkit-transform: translateY( -50% ); 1065 -moz-transform: translateY( -50% ); 1066 -ms-transform: translateY( -50% ); 1067 -o-transform: translateY( -50% ); 1068 transform: translateY( -50% ); 1069 1020 transform: translateY( -50% ); 1070 1021 font-size: 40px; 1071 1022 color: #fff; 1072 1023 padding: 0; … … 1260 1211 right: 0; 1261 1212 bottom: 0; 1262 1213 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 ) ); 1214 background-image: linear-gradient(to left, rgba( 255, 255, 255, 1 ) , rgba( 255, 255, 255, 0 ) ); 1268 1215 } 1269 1216 1270 1217 .media-selection .attachment .filename { … … 1692 1639 .media-modal-close { 1693 1640 right: 10px; 1694 1641 } 1695 1642 1696 1643 /* Text inputs need to be 16px, or they force zooming on iOS */ 1697 1644 .media-frame input[type="text"], 1698 1645 .media-frame input[type="password"], … … 1740 1687 .media-frame-title { 1741 1688 display: none; 1742 1689 } 1743 1690 1744 1691 .media-frame-toolbar { 1745 1692 position: absolute; 1746 1693 bottom: 0px; … … 1765 1712 .attachment-details h3 { 1766 1713 margin-top: 45px; 1767 1714 } 1768 1715 1769 1716 /* Shorten right-side links so they don't overlap the close button */ 1770 1717 .media-menu a:nth-child(2), 1771 1718 .media-menu a:last-child { … … 1791 1738 top: 84px; 1792 1739 left: 0; 1793 1740 } 1794 1741 1795 1742 .media-frame-content { 1796 1743 left: 0; 1797 1744 top: 118px; … … 1800 1747 .media-frame .attachments-browser { 1801 1748 padding-bottom: 300px; 1802 1749 } 1803 1750 1804 1751 .media-sidebar { 1805 1752 border-bottom: 1px solid #dddddd; 1806 1753 } 1807 1754 1808 1755 .media-modal { 1809 1756 width: auto; 1810 1757 } … … 1910 1857 .media-frame-content { 1911 1858 top: 78px; 1912 1859 } 1913 1860 1914 1861 .attachments-browser .attachments { 1915 1862 top: 2px; 1916 1863 } -
src/wp-includes/css/wp-auth-check.css
30 30 padding: 30px 0 0; 31 31 background-color: #eee; 32 32 z-index: 1000001; 33 -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.3); 34 box-shadow: 0 3px 6px rgba(0,0,0,0.3); 33 box-shadow: 0 3px 6px rgba(0,0,0,0.3); 35 34 } 36 35 37 36 #wp-auth-check-wrap.fallback #wp-auth-check { … … 71 70 width: 22px; 72 71 color: #777; 73 72 -webkit-font-smoothing: antialiased !important; 73 -moz-osx-font-smoothing: grayscale; 74 74 } 75 75 76 76 #wp-auth-check-wrap .wp-auth-check-close:hover:before { … … 95 95 #wp-auth-check-wrap.fallback .wp-auth-fallback, 96 96 #wp-auth-check-wrap.fallback .wp-auth-check-close { 97 97 display: block; 98 } 99 No newline at end of file 98 } -
src/wp-includes/css/wp-pointer.css
4 4 font-size: 13px; 5 5 background: #fff; 6 6 border: 1px solid #dfdfdf; 7 -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.075); 8 box-shadow: 0 3px 6px rgba(0,0,0,0.075); 7 box-shadow: 0 3px 6px rgba(0,0,0,0.075); 9 8 } 10 9 11 10 .wp-pointer-content h3 {