Coding standards: Fix incorrect CSS `rgba()` values.

Also, fixes some indentation where spaces were used instead of tabs.

Props nielslange, mukesh27.
Fixes #45937.

Built from https://develop.svn.wordpress.org/trunk@44791


git-svn-id: http://core.svn.wordpress.org/trunk@44623 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrea Fercia 2019-03-04 22:02:52 +00:00
parent 3a2a5431f1
commit 957ad84b81
58 changed files with 408 additions and 402 deletions

View File

@ -67,9 +67,9 @@
padding: 40px 10px 15px; padding: 40px 10px 15px;
overflow: auto; overflow: auto;
box-sizing: border-box; box-sizing: border-box;
background: linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 60%,transparent); background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 60%, transparent);
font-weight: 600; font-weight: 600;
text-shadow: 0px 0px 5px rgba(0,0,0,.75); text-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
} }
.about-wrap .jetpack-video-wrapper { .about-wrap .jetpack-video-wrapper {
@ -92,7 +92,7 @@
display: inline-block; display: inline-block;
width: 140px; width: 140px;
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
box-shadow: 0 1px 3px rgba(0,0,0,0.2); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
} }
.svg .wp-badge { .svg .wp-badge {

View File

@ -67,9 +67,9 @@
padding: 40px 10px 15px; padding: 40px 10px 15px;
overflow: auto; overflow: auto;
box-sizing: border-box; box-sizing: border-box;
background: linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 60%,transparent); background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 60%, transparent);
font-weight: 600; font-weight: 600;
text-shadow: 0px 0px 5px rgba(0,0,0,.75); text-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
} }
.about-wrap .jetpack-video-wrapper { .about-wrap .jetpack-video-wrapper {
@ -92,7 +92,7 @@
display: inline-block; display: inline-block;
width: 140px; width: 140px;
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
box-shadow: 0 1px 3px rgba(0,0,0,0.2); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
} }
.svg .wp-badge { .svg .wp-badge {

View File

@ -166,7 +166,7 @@
#adminmenu .wp-submenu a { #adminmenu .wp-submenu a {
color: #b4b9be; color: #b4b9be;
color: rgba(240,245,250,0.7); color: rgba(240, 245, 250, 0.7);
} }
#adminmenu .wp-submenu a:hover, #adminmenu .wp-submenu a:hover,
@ -202,7 +202,7 @@
padding: 7px 0 8px; padding: 7px 0 8px;
z-index: 9999; z-index: 9999;
background-color: #32373c; background-color: #32373c;
box-shadow: 0 3px 5px rgba(0,0,0,0.2); box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
} }
.js #adminmenu .sub-open, .js #adminmenu .sub-open,
@ -359,14 +359,14 @@
div.wp-menu-image:before { div.wp-menu-image:before {
color: #a0a5aa; color: #a0a5aa;
color: rgba(240,245,250,0.6); color: rgba(240, 245, 250, 0.6);
padding: 7px 0; padding: 7px 0;
transition: all .1s ease-in-out; transition: all .1s ease-in-out;
} }
#adminmenu div.wp-menu-image:before { #adminmenu div.wp-menu-image:before {
color: #a0a5aa; color: #a0a5aa;
color: rgba(240,245,250,0.6); color: rgba(240, 245, 250, 0.6);
} }
#adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before,

View File

@ -166,7 +166,7 @@
#adminmenu .wp-submenu a { #adminmenu .wp-submenu a {
color: #b4b9be; color: #b4b9be;
color: rgba(240,245,250,0.7); color: rgba(240, 245, 250, 0.7);
} }
#adminmenu .wp-submenu a:hover, #adminmenu .wp-submenu a:hover,
@ -202,7 +202,7 @@
padding: 7px 0 8px; padding: 7px 0 8px;
z-index: 9999; z-index: 9999;
background-color: #32373c; background-color: #32373c;
box-shadow: 0 3px 5px rgba(0,0,0,0.2); box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
} }
.js #adminmenu .sub-open, .js #adminmenu .sub-open,
@ -359,14 +359,14 @@
div.wp-menu-image:before { div.wp-menu-image:before {
color: #a0a5aa; color: #a0a5aa;
color: rgba(240,245,250,0.6); color: rgba(240, 245, 250, 0.6);
padding: 7px 0; padding: 7px 0;
transition: all .1s ease-in-out; transition: all .1s ease-in-out;
} }
#adminmenu div.wp-menu-image:before { #adminmenu div.wp-menu-image:before {
color: #a0a5aa; color: #a0a5aa;
color: rgba(240,245,250,0.6); color: rgba(240, 245, 250, 0.6);
} }
#adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before,

View File

@ -28,7 +28,7 @@
.wp-core-ui .CodeMirror-lint-message-error, .wp-core-ui .CodeMirror-lint-message-error,
.wp-core-ui .CodeMirror-lint-message-warning { .wp-core-ui .CodeMirror-lint-message-warning {
box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 ); box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
margin: 5px 0 2px; margin: 5px 0 2px;
padding: 3px 28px 3px 12px; padding: 3px 28px 3px 12px;
} }
@ -63,7 +63,7 @@
} }
.wrap .CodeMirror .CodeMirror-matchingbracket { .wrap .CodeMirror .CodeMirror-matchingbracket {
background: rgba(255, 150, 0, .3); background: rgba(255, 150, 0, 0.3);
color: inherit; color: inherit;
} }

View File

@ -28,7 +28,7 @@
.wp-core-ui .CodeMirror-lint-message-error, .wp-core-ui .CodeMirror-lint-message-error,
.wp-core-ui .CodeMirror-lint-message-warning { .wp-core-ui .CodeMirror-lint-message-warning {
box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 ); box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
margin: 5px 0 2px; margin: 5px 0 2px;
padding: 3px 12px 3px 28px; padding: 3px 12px 3px 28px;
} }
@ -63,7 +63,7 @@
} }
.wrap .CodeMirror .CodeMirror-matchingbracket { .wrap .CodeMirror .CodeMirror-matchingbracket {
background: rgba(255, 150, 0, .3); background: rgba(255, 150, 0, 0.3);
color: inherit; color: inherit;
} }

View File

@ -45,7 +45,7 @@
.wp-color-result:focus { .wp-color-result:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
} }
.wp-color-result:active { .wp-color-result:active {
@ -115,14 +115,14 @@
.iris-picker .iris-strip .ui-slider-handle:focus { .iris-picker .iris-strip .ui-slider-handle:focus {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.iris-picker .iris-palette:focus { .iris-picker .iris-palette:focus {
box-shadow: box-shadow:
inset 0 0 5px rgba(0,0,0,.4), inset 0 0 5px rgba(0, 0, 0, 0.4),
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
@media screen and (max-width: 782px) { @media screen and (max-width: 782px) {

View File

@ -45,7 +45,7 @@
.wp-color-result:focus { .wp-color-result:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
} }
.wp-color-result:active { .wp-color-result:active {
@ -115,14 +115,14 @@
.iris-picker .iris-strip .ui-slider-handle:focus { .iris-picker .iris-strip .ui-slider-handle:focus {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.iris-picker .iris-palette:focus { .iris-picker .iris-palette:focus {
box-shadow: box-shadow:
inset 0 0 5px rgba(0,0,0,.4), inset 0 0 5px rgba(0, 0, 0, 0.4),
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
@media screen and (max-width: 782px) { @media screen and (max-width: 782px) {

View File

@ -156,7 +156,7 @@
color: #0073aa; color: #0073aa;
z-index: 100000; z-index: 100000;
line-height: normal; line-height: normal;
box-shadow: 0 0 2px 2px rgba(0,0,0,.6); box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
text-decoration: none; text-decoration: none;
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 2px solid transparent; outline: 2px solid transparent;
@ -191,7 +191,7 @@ p.popular-tags,
.imgedit-group, .imgedit-group,
.comment-ays { .comment-ays {
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
} }
table.widefat, table.widefat,
@ -274,7 +274,7 @@ a:focus .media-icon img,
color: #124964; color: #124964;
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 1px solid transparent; outline: 1px solid transparent;
} }
@ -423,7 +423,7 @@ code {
padding: 3px 5px 2px 5px; padding: 3px 5px 2px 5px;
margin: 0 1px; margin: 0 1px;
background: #eaeaea; background: #eaeaea;
background: rgba(0,0,0,0.07); background: rgba(0, 0, 0, 0.07);
font-size: 13px; font-size: 13px;
} }
@ -647,7 +647,7 @@ code {
.wrap .page-title-action:focus { .wrap .page-title-action:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 ); box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 2px solid transparent; outline: 2px solid transparent;
} }
@ -666,7 +666,7 @@ code {
div#widgets-right .widget-top:hover, div#widgets-right .widget-top:hover,
#widgets-left .widget-top:hover { #widgets-left .widget-top:hover {
border-color: #999; border-color: #999;
box-shadow: 0 1px 2px rgba(0,0,0,0.1); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
} }
.sorthelper { .sorthelper {
@ -831,7 +831,7 @@ img.emoji {
.tagchecklist .ntdelbutton:focus .remove-tag-icon:before { .tagchecklist .ntdelbutton:focus .remove-tag-icon:before {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.key-labels label { .key-labels label {
@ -996,7 +996,7 @@ th.action-links {
margin: 12px 0 25px; margin: 12px 0 25px;
padding: 0 10px; padding: 0 10px;
width: 100%; width: 100%;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
background: #fff; background: #fff;
color: #555; color: #555;
@ -1185,7 +1185,7 @@ th.action-links {
width: 24%; width: 24%;
background: #fff; background: #fff;
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
} }
.filter-group legend { .filter-group legend {
@ -1267,7 +1267,7 @@ th.action-links {
margin: 0 5px; margin: 0 5px;
padding: 4px 8px; padding: 4px 8px;
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff; background: #fff;
font-size: 11px; font-size: 11px;
} }
@ -1365,7 +1365,7 @@ div.updated,
div.error { div.error {
background: #fff; background: #fff;
border-right: 4px solid #fff; border-right: 4px solid #fff;
box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 ); box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
margin: 5px 15px 2px; margin: 5px 15px 2px;
padding: 1px 12px; padding: 1px 12px;
} }
@ -1430,7 +1430,7 @@ div.error p,
.notice-dismiss:focus { .notice-dismiss:focus {
outline: none; outline: none;
box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8); box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.ie8 .notice-dismiss:focus { .ie8 .notice-dismiss:focus {
@ -1558,7 +1558,7 @@ div.error {
margin: 25px 2px 0 20px; margin: 25px 2px 0 20px;
background-color: #fff; background-color: #fff;
border-right: 4px solid #ffba00; border-right: 4px solid #ffba00;
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1); box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
} }
ul#dismissed-updates { ul#dismissed-updates {
@ -1670,7 +1670,7 @@ form.upgrade .hint {
background-color: #fff; background-color: #fff;
border: 1px solid #ddd; border: 1px solid #ddd;
border-top: none; border-top: none;
box-shadow: 0 1px 0 rgba(0,0,0,.025); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.025);
} }
#screen-options-link-wrap, #screen-options-link-wrap,
@ -1681,7 +1681,7 @@ form.upgrade .hint {
border: 1px solid #ddd; border: 1px solid #ddd;
border-top: none; border-top: none;
background: #fff; background: #fff;
box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
} }
#screen-meta-links .screen-meta-toggle { #screen-meta-links .screen-meta-toggle {
@ -1879,7 +1879,7 @@ form.upgrade .hint {
margin: 0 0 0 -1px; margin: 0 0 0 -1px;
border-right: 2px solid #00a0d2; border-right: 2px solid #00a0d2;
background: #f6fbfd; background: #f6fbfd;
box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02); box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02), 0 1px 0 rgba(0, 0, 0, 0.02);
} }
.contextual-help-tabs .active a { .contextual-help-tabs .active a {
@ -2564,9 +2564,9 @@ div.action-links {
padding: 0 15px; padding: 0 15px;
margin-top: 174px; margin-top: 174px;
color: #fff; color: #fff;
background: rgba( 30, 30, 30, 0.9 ); background: rgba(30, 30, 30, 0.9);
text-shadow: 0 1px 3px rgba( 0, 0, 0, 0.4 ); text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
box-shadow: 0 0 30px rgba( 255, 255, 255, 0.1 ); box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
border-radius: 8px; border-radius: 8px;
} }
@ -2582,7 +2582,7 @@ div.action-links {
height: 250px; height: 250px;
width: 100%; width: 100%;
background: transparent; background: transparent;
box-shadow: inset 0 0 50px 4px rgba( 0, 0, 0, 0.2 ), inset 0 -1px 0 rgba( 0, 0, 0, 0.1 ); box-shadow: inset 0 0 50px 4px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
} }
#plugin-information-tabs { #plugin-information-tabs {
@ -2795,7 +2795,7 @@ div.action-links {
max-width: 100%; max-width: 100%;
width: auto; width: auto;
height: auto; height: auto;
box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
} }
/* rtl:ignore */ /* rtl:ignore */
@ -3050,7 +3050,7 @@ img {
.js .postbox .handlediv:focus .toggle-indicator:before { .js .postbox .handlediv:focus .toggle-indicator:before {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
/* @todo: appears to be Press This only and overridden */ /* @todo: appears to be Press This only and overridden */
@ -3145,7 +3145,7 @@ img {
} }
[role="treeitem"] .folder-label.focus { [role="treeitem"] .folder-label.focus {
color: #124964; color: #124964;
box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8); box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
[role="treeitem"].hover, [role="treeitem"].hover,
[role="treeitem"] .folder-label.hover { [role="treeitem"] .folder-label.hover {
@ -3374,7 +3374,7 @@ img {
.widget-top .widget-action:focus .toggle-indicator:before { .widget-top .widget-action:focus .toggle-indicator:before {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30,140,190,.8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.control-section .accordion-section-title:after, .control-section .accordion-section-title:after,

View File

@ -156,7 +156,7 @@
color: #0073aa; color: #0073aa;
z-index: 100000; z-index: 100000;
line-height: normal; line-height: normal;
box-shadow: 0 0 2px 2px rgba(0,0,0,.6); box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
text-decoration: none; text-decoration: none;
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 2px solid transparent; outline: 2px solid transparent;
@ -191,7 +191,7 @@ p.popular-tags,
.imgedit-group, .imgedit-group,
.comment-ays { .comment-ays {
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
} }
table.widefat, table.widefat,
@ -274,7 +274,7 @@ a:focus .media-icon img,
color: #124964; color: #124964;
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 1px solid transparent; outline: 1px solid transparent;
} }
@ -423,7 +423,7 @@ code {
padding: 3px 5px 2px 5px; padding: 3px 5px 2px 5px;
margin: 0 1px; margin: 0 1px;
background: #eaeaea; background: #eaeaea;
background: rgba(0,0,0,0.07); background: rgba(0, 0, 0, 0.07);
font-size: 13px; font-size: 13px;
} }
@ -647,7 +647,7 @@ code {
.wrap .page-title-action:focus { .wrap .page-title-action:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 ); box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 2px solid transparent; outline: 2px solid transparent;
} }
@ -666,7 +666,7 @@ code {
div#widgets-right .widget-top:hover, div#widgets-right .widget-top:hover,
#widgets-left .widget-top:hover { #widgets-left .widget-top:hover {
border-color: #999; border-color: #999;
box-shadow: 0 1px 2px rgba(0,0,0,0.1); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
} }
.sorthelper { .sorthelper {
@ -831,7 +831,7 @@ img.emoji {
.tagchecklist .ntdelbutton:focus .remove-tag-icon:before { .tagchecklist .ntdelbutton:focus .remove-tag-icon:before {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.key-labels label { .key-labels label {
@ -996,7 +996,7 @@ th.action-links {
margin: 12px 0 25px; margin: 12px 0 25px;
padding: 0 10px; padding: 0 10px;
width: 100%; width: 100%;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
background: #fff; background: #fff;
color: #555; color: #555;
@ -1185,7 +1185,7 @@ th.action-links {
width: 24%; width: 24%;
background: #fff; background: #fff;
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
} }
.filter-group legend { .filter-group legend {
@ -1267,7 +1267,7 @@ th.action-links {
margin: 0 5px; margin: 0 5px;
padding: 4px 8px; padding: 4px 8px;
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff; background: #fff;
font-size: 11px; font-size: 11px;
} }
@ -1365,7 +1365,7 @@ div.updated,
div.error { div.error {
background: #fff; background: #fff;
border-left: 4px solid #fff; border-left: 4px solid #fff;
box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 ); box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
margin: 5px 15px 2px; margin: 5px 15px 2px;
padding: 1px 12px; padding: 1px 12px;
} }
@ -1430,7 +1430,7 @@ div.error p,
.notice-dismiss:focus { .notice-dismiss:focus {
outline: none; outline: none;
box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8); box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.ie8 .notice-dismiss:focus { .ie8 .notice-dismiss:focus {
@ -1558,7 +1558,7 @@ div.error {
margin: 25px 20px 0 2px; margin: 25px 20px 0 2px;
background-color: #fff; background-color: #fff;
border-left: 4px solid #ffba00; border-left: 4px solid #ffba00;
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1); box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
} }
ul#dismissed-updates { ul#dismissed-updates {
@ -1670,7 +1670,7 @@ form.upgrade .hint {
background-color: #fff; background-color: #fff;
border: 1px solid #ddd; border: 1px solid #ddd;
border-top: none; border-top: none;
box-shadow: 0 1px 0 rgba(0,0,0,.025); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.025);
} }
#screen-options-link-wrap, #screen-options-link-wrap,
@ -1681,7 +1681,7 @@ form.upgrade .hint {
border: 1px solid #ddd; border: 1px solid #ddd;
border-top: none; border-top: none;
background: #fff; background: #fff;
box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
} }
#screen-meta-links .screen-meta-toggle { #screen-meta-links .screen-meta-toggle {
@ -1879,7 +1879,7 @@ form.upgrade .hint {
margin: 0 -1px 0 0; margin: 0 -1px 0 0;
border-left: 2px solid #00a0d2; border-left: 2px solid #00a0d2;
background: #f6fbfd; background: #f6fbfd;
box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02); box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02), 0 1px 0 rgba(0, 0, 0, 0.02);
} }
.contextual-help-tabs .active a { .contextual-help-tabs .active a {
@ -2564,9 +2564,9 @@ div.action-links {
padding: 0 15px; padding: 0 15px;
margin-top: 174px; margin-top: 174px;
color: #fff; color: #fff;
background: rgba( 30, 30, 30, 0.9 ); background: rgba(30, 30, 30, 0.9);
text-shadow: 0 1px 3px rgba( 0, 0, 0, 0.4 ); text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
box-shadow: 0 0 30px rgba( 255, 255, 255, 0.1 ); box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
border-radius: 8px; border-radius: 8px;
} }
@ -2582,7 +2582,7 @@ div.action-links {
height: 250px; height: 250px;
width: 100%; width: 100%;
background: transparent; background: transparent;
box-shadow: inset 0 0 50px 4px rgba( 0, 0, 0, 0.2 ), inset 0 -1px 0 rgba( 0, 0, 0, 0.1 ); box-shadow: inset 0 0 50px 4px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
} }
#plugin-information-tabs { #plugin-information-tabs {
@ -2795,7 +2795,7 @@ div.action-links {
max-width: 100%; max-width: 100%;
width: auto; width: auto;
height: auto; height: auto;
box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
} }
/* rtl:ignore */ /* rtl:ignore */
@ -3050,7 +3050,7 @@ img {
.js .postbox .handlediv:focus .toggle-indicator:before { .js .postbox .handlediv:focus .toggle-indicator:before {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
/* @todo: appears to be Press This only and overridden */ /* @todo: appears to be Press This only and overridden */
@ -3145,7 +3145,7 @@ img {
} }
[role="treeitem"] .folder-label.focus { [role="treeitem"] .folder-label.focus {
color: #124964; color: #124964;
box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8); box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
[role="treeitem"].hover, [role="treeitem"].hover,
[role="treeitem"] .folder-label.hover { [role="treeitem"] .folder-label.hover {
@ -3374,7 +3374,7 @@ img {
.widget-top .widget-action:focus .toggle-indicator:before { .widget-top .widget-action:focus .toggle-indicator:before {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30,140,190,.8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.control-section .accordion-section-title:after, .control-section .accordion-section-title:after,

View File

@ -21,7 +21,7 @@ body {
} }
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked { #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked {
background-color: rgba( 0, 0, 0, 0.7 ); background-color: rgba(0, 0, 0, 0.7);
padding: 25px; padding: 25px;
} }
@ -34,7 +34,7 @@ body {
padding: 25px 109px 25px 25px; padding: 25px 109px 25px 25px;
position: relative; position: relative;
background: #fff; background: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
line-height: 1.5; line-height: 1.5;
overflow-y: auto; overflow-y: auto;
text-align: right; text-align: right;
@ -392,7 +392,7 @@ body.trashing #publish-settings {
position: absolute; position: absolute;
z-index: 9; z-index: 9;
width: 100%; width: 100%;
box-shadow: 0 1px 0 rgba(0, 0, 0, .1); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
} }
#customize-controls .customize-section-title.is-in-view { #customize-controls .customize-section-title.is-in-view {
@ -1532,7 +1532,7 @@ p.customize-section-description {
outline: none; outline: none;
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 3px 1px rgba(30, 140, 190, .8); 0 0 3px 1px rgba(30, 140, 190, 0.8);
} }
.customize-control-header .uploaded div:last-child > .choice { .customize-control-header .uploaded div:last-child > .choice {
@ -1624,7 +1624,7 @@ p.customize-section-description {
.theme-browser .theme.active .theme-actions, .theme-browser .theme.active .theme-actions,
.wp-customizer .theme-browser .theme .theme-actions { .wp-customizer .theme-browser .theme .theme-actions {
padding: 10px 15px; padding: 10px 15px;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
} }
@media screen and (max-width: 640px) { @media screen and (max-width: 640px) {
@ -1786,7 +1786,7 @@ p.customize-section-description {
.themes-filter-bar .feature-filter-toggle.open { .themes-filter-bar .feature-filter-toggle.open {
background: #eee; background: #eee;
border-color: #999; border-color: #999;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
transform: translateY(1px); transform: translateY(1px);
} }
@ -2245,7 +2245,7 @@ p.customize-section-description {
} }
.wp-customizer .theme-overlay .theme-backdrop { .wp-customizer .theme-overlay .theme-backdrop {
background: rgba( 238, 238, 238, 0.75 ); background: rgba(238, 238, 238, 0.75);
position: fixed; position: fixed;
z-index: 110; z-index: 110;
} }
@ -2345,7 +2345,7 @@ body.cheatin {
padding: 1em 2em; padding: 1em 2em;
max-width: 700px; max-width: 700px;
min-width: 0; min-width: 0;
box-shadow: 0 1px 3px rgba(0,0,0,0.13); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
} }
body.cheatin h1 { body.cheatin h1 {
@ -2643,7 +2643,7 @@ body.adding-widget .add-new-widget:before,
#available-menu-items-search .clear-results:focus { #available-menu-items-search .clear-results:focus {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
#available-menu-items-search .search-icon:after, #available-menu-items-search .search-icon:after,
@ -2942,7 +2942,7 @@ body.adding-widget .add-new-widget:before,
.theme-browser .theme.active .theme-actions, .theme-browser .theme.active .theme-actions,
.wp-customizer .theme-browser .theme .theme-actions { .wp-customizer .theme-browser .theme .theme-actions {
padding: 9px 15px; padding: 9px 15px;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
} }
} }

View File

@ -21,7 +21,7 @@ body {
} }
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked { #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked {
background-color: rgba( 0, 0, 0, 0.7 ); background-color: rgba(0, 0, 0, 0.7);
padding: 25px; padding: 25px;
} }
@ -34,7 +34,7 @@ body {
padding: 25px 25px 25px 109px; padding: 25px 25px 25px 109px;
position: relative; position: relative;
background: #fff; background: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
line-height: 1.5; line-height: 1.5;
overflow-y: auto; overflow-y: auto;
text-align: left; text-align: left;
@ -392,7 +392,7 @@ body.trashing #publish-settings {
position: absolute; position: absolute;
z-index: 9; z-index: 9;
width: 100%; width: 100%;
box-shadow: 0 1px 0 rgba(0, 0, 0, .1); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
} }
#customize-controls .customize-section-title.is-in-view { #customize-controls .customize-section-title.is-in-view {
@ -1532,7 +1532,7 @@ p.customize-section-description {
outline: none; outline: none;
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 3px 1px rgba(30, 140, 190, .8); 0 0 3px 1px rgba(30, 140, 190, 0.8);
} }
.customize-control-header .uploaded div:last-child > .choice { .customize-control-header .uploaded div:last-child > .choice {
@ -1624,7 +1624,7 @@ p.customize-section-description {
.theme-browser .theme.active .theme-actions, .theme-browser .theme.active .theme-actions,
.wp-customizer .theme-browser .theme .theme-actions { .wp-customizer .theme-browser .theme .theme-actions {
padding: 10px 15px; padding: 10px 15px;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
} }
@media screen and (max-width: 640px) { @media screen and (max-width: 640px) {
@ -1786,7 +1786,7 @@ p.customize-section-description {
.themes-filter-bar .feature-filter-toggle.open { .themes-filter-bar .feature-filter-toggle.open {
background: #eee; background: #eee;
border-color: #999; border-color: #999;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
transform: translateY(1px); transform: translateY(1px);
} }
@ -2245,7 +2245,7 @@ p.customize-section-description {
} }
.wp-customizer .theme-overlay .theme-backdrop { .wp-customizer .theme-overlay .theme-backdrop {
background: rgba( 238, 238, 238, 0.75 ); background: rgba(238, 238, 238, 0.75);
position: fixed; position: fixed;
z-index: 110; z-index: 110;
} }
@ -2345,7 +2345,7 @@ body.cheatin {
padding: 1em 2em; padding: 1em 2em;
max-width: 700px; max-width: 700px;
min-width: 0; min-width: 0;
box-shadow: 0 1px 3px rgba(0,0,0,0.13); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
} }
body.cheatin h1 { body.cheatin h1 {
@ -2643,7 +2643,7 @@ body.adding-widget .add-new-widget:before,
#available-menu-items-search .clear-results:focus { #available-menu-items-search .clear-results:focus {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
#available-menu-items-search .search-icon:after, #available-menu-items-search .search-icon:after,
@ -2942,7 +2942,7 @@ body.adding-widget .add-new-widget:before,
.theme-browser .theme.active .theme-actions, .theme-browser .theme.active .theme-actions,
.wp-customizer .theme-browser .theme .theme-actions { .wp-customizer .theme-browser .theme .theme-actions {
padding: 9px 15px; padding: 9px 15px;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
} }
} }

View File

@ -870,7 +870,7 @@ li.assigned-to-menu-location .add-new-menu-item {
#available-menu-items .item-add:focus:before { #available-menu-items .item-add:focus:before {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }

View File

@ -870,7 +870,7 @@ li.assigned-to-menu-location .add-new-menu-item {
#available-menu-items .item-add:focus:before { #available-menu-items .item-add:focus:before {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }

View File

@ -112,7 +112,7 @@
.control-section.accordion-section.highlighted > .accordion-section-title, .control-section.accordion-section.highlighted > .accordion-section-title,
.customize-control-widget_form.highlighted { .customize-control-widget_form.highlighted {
outline: none; outline: none;
box-shadow: 0 0 2px rgba(30,140,190,0.8); box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
position: relative; position: relative;
z-index: 1; z-index: 1;
} }
@ -189,7 +189,7 @@
#customize-theme-controls .widget-area-select .selected { #customize-theme-controls .widget-area-select .selected {
color: #fff; color: #fff;
text-shadow: 0 -1px 0 rgba(0,0,0,.4); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
background: #00a0d2; background: #00a0d2;
} }

View File

@ -112,7 +112,7 @@
.control-section.accordion-section.highlighted > .accordion-section-title, .control-section.accordion-section.highlighted > .accordion-section-title,
.customize-control-widget_form.highlighted { .customize-control-widget_form.highlighted {
outline: none; outline: none;
box-shadow: 0 0 2px rgba(30,140,190,0.8); box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
position: relative; position: relative;
z-index: 1; z-index: 1;
} }
@ -189,7 +189,7 @@
#customize-theme-controls .widget-area-select .selected { #customize-theme-controls .widget-area-select .selected {
color: #fff; color: #fff;
text-shadow: 0 -1px 0 rgba(0,0,0,.4); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
background: #00a0d2; background: #00a0d2;
} }

View File

@ -104,7 +104,7 @@
margin: 16px 0; margin: 16px 0;
padding: 23px 10px 0; padding: 23px 10px 0;
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff; background: #fff;
font-size: 13px; font-size: 13px;
line-height: 2.1em; line-height: 2.1em;

View File

@ -104,7 +104,7 @@
margin: 16px 0; margin: 16px 0;
padding: 23px 10px 0; padding: 23px 10px 0;
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff; background: #fff;
font-size: 13px; font-size: 13px;
line-height: 2.1em; line-height: 2.1em;

View File

@ -154,7 +154,7 @@ body.post-new-php .submitbox .submitdelete {
position: relative; position: relative;
min-width: 255px; min-width: 255px;
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff; background: #fff;
} }
@ -312,7 +312,7 @@ form#tags-filter {
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
border-top: none; border-top: none;
background-color: #f7f7f7; background-color: #f7f7f7;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
z-index: 999; z-index: 999;
} }
@ -506,7 +506,7 @@ span.wp-media-buttons-icon:before {
width: 450px; width: 450px;
margin-right: -225px; margin-right: -225px;
background: #fff; background: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
line-height: 1.5; line-height: 1.5;
z-index: 1000005; z-index: 1000005;
overflow-y: auto; overflow-y: auto;

View File

@ -154,7 +154,7 @@ body.post-new-php .submitbox .submitdelete {
position: relative; position: relative;
min-width: 255px; min-width: 255px;
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff; background: #fff;
} }
@ -312,7 +312,7 @@ form#tags-filter {
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
border-top: none; border-top: none;
background-color: #f7f7f7; background-color: #f7f7f7;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
z-index: 999; z-index: 999;
} }
@ -506,7 +506,7 @@ span.wp-media-buttons-icon:before {
width: 450px; width: 450px;
margin-left: -225px; margin-left: -225px;
background: #fff; background: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
line-height: 1.5; line-height: 1.5;
z-index: 1000005; z-index: 1000005;
overflow-y: auto; overflow-y: auto;

View File

@ -24,7 +24,7 @@ input[type="week"],
select, select,
textarea { textarea {
border: 1px solid #ddd; border: 1px solid #ddd;
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 ); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
background-color: #fff; background-color: #fff;
color: #32373c; color: #32373c;
outline: none; outline: none;
@ -51,7 +51,7 @@ input[type="radio"]:focus,
select:focus, select:focus,
textarea:focus { textarea:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 ); box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 2px solid transparent; outline: 2px solid transparent;
} }
@ -86,7 +86,7 @@ input[type="radio"] {
width: 16px; width: 16px;
min-width: 16px; min-width: 16px;
-webkit-appearance: none; -webkit-appearance: none;
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.1 ); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
transition: .05s border-color ease-in-out; transition: .05s border-color ease-in-out;
} }
@ -243,7 +243,7 @@ textarea[readonly] {
.form-invalid select, .form-invalid select,
.form-invalid select:focus { .form-invalid select:focus {
border-color: #dc3232 !important; border-color: #dc3232 !important;
box-shadow: 0 0 2px rgba( 204, 0, 0, 0.8 ); box-shadow: 0 0 2px rgba(204, 0, 0, 0.8);
} }
.form-table .form-required.form-invalid td:after { .form-table .form-required.form-invalid td:after {
@ -277,10 +277,10 @@ select:disabled,
select.disabled, select.disabled,
textarea:disabled, textarea:disabled,
textarea.disabled { textarea.disabled {
background: rgba( 255, 255, 255, 0.5 ); background: rgba(255, 255, 255, 0.5);
border-color: rgba( 222, 222, 222, 0.75 ); border-color: rgba(222, 222, 222, 0.75);
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.04 ); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
color: rgba( 51, 51, 51, 0.5 ); color: rgba(51, 51, 51, 0.5);
} }
input[type="file"]:disabled, input[type="file"]:disabled,
@ -579,7 +579,7 @@ ul#add-to-blog-users {
position: absolute; position: absolute;
z-index: 10000; z-index: 10000;
border: 1px solid #5b9dd9; border: 1px solid #5b9dd9;
box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 ); box-shadow: 0 1px 2px rgba(30, 140, 190, 0.8);
background-color: #fff; background-color: #fff;
} }
@ -782,7 +782,7 @@ table.form-table td .updated p {
min-width: 255px; min-width: 255px;
max-width: 520px; max-width: 520px;
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff; background: #fff;
} }
@ -1114,7 +1114,7 @@ table.form-table td .updated p {
.privacy_requests tbody th { .privacy_requests tbody th {
border-right: 4px solid #fff; border-right: 4px solid #fff;
background: #fff; background: #fff;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
} }
.privacy_requests tbody .has-request-results th { .privacy_requests tbody .has-request-results th {
@ -1127,7 +1127,7 @@ table.form-table td .updated p {
.privacy_requests tbody td { .privacy_requests tbody td {
background: #fff; background: #fff;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
} }
.privacy_requests tbody .has-request-results td { .privacy_requests tbody .has-request-results td {

View File

@ -24,7 +24,7 @@ input[type="week"],
select, select,
textarea { textarea {
border: 1px solid #ddd; border: 1px solid #ddd;
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 ); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
background-color: #fff; background-color: #fff;
color: #32373c; color: #32373c;
outline: none; outline: none;
@ -51,7 +51,7 @@ input[type="radio"]:focus,
select:focus, select:focus,
textarea:focus { textarea:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 ); box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 2px solid transparent; outline: 2px solid transparent;
} }
@ -86,7 +86,7 @@ input[type="radio"] {
width: 16px; width: 16px;
min-width: 16px; min-width: 16px;
-webkit-appearance: none; -webkit-appearance: none;
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.1 ); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
transition: .05s border-color ease-in-out; transition: .05s border-color ease-in-out;
} }
@ -243,7 +243,7 @@ textarea[readonly] {
.form-invalid select, .form-invalid select,
.form-invalid select:focus { .form-invalid select:focus {
border-color: #dc3232 !important; border-color: #dc3232 !important;
box-shadow: 0 0 2px rgba( 204, 0, 0, 0.8 ); box-shadow: 0 0 2px rgba(204, 0, 0, 0.8);
} }
.form-table .form-required.form-invalid td:after { .form-table .form-required.form-invalid td:after {
@ -277,10 +277,10 @@ select:disabled,
select.disabled, select.disabled,
textarea:disabled, textarea:disabled,
textarea.disabled { textarea.disabled {
background: rgba( 255, 255, 255, 0.5 ); background: rgba(255, 255, 255, 0.5);
border-color: rgba( 222, 222, 222, 0.75 ); border-color: rgba(222, 222, 222, 0.75);
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.04 ); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
color: rgba( 51, 51, 51, 0.5 ); color: rgba(51, 51, 51, 0.5);
} }
input[type="file"]:disabled, input[type="file"]:disabled,
@ -579,7 +579,7 @@ ul#add-to-blog-users {
position: absolute; position: absolute;
z-index: 10000; z-index: 10000;
border: 1px solid #5b9dd9; border: 1px solid #5b9dd9;
box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 ); box-shadow: 0 1px 2px rgba(30, 140, 190, 0.8);
background-color: #fff; background-color: #fff;
} }
@ -782,7 +782,7 @@ table.form-table td .updated p {
min-width: 255px; min-width: 255px;
max-width: 520px; max-width: 520px;
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff; background: #fff;
} }
@ -1114,7 +1114,7 @@ table.form-table td .updated p {
.privacy_requests tbody th { .privacy_requests tbody th {
border-left: 4px solid #fff; border-left: 4px solid #fff;
background: #fff; background: #fff;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
} }
.privacy_requests tbody .has-request-results th { .privacy_requests tbody .has-request-results th {
@ -1127,7 +1127,7 @@ table.form-table td .updated p {
.privacy_requests tbody td { .privacy_requests tbody td {
background: #fff; background: #fff;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
} }
.privacy_requests tbody .has-request-results td { .privacy_requests tbody .has-request-results td {

View File

@ -11,7 +11,7 @@ body {
padding: 20px 20px 10px 20px; padding: 20px 20px 10px 20px;
max-width: 700px; max-width: 700px;
-webkit-font-smoothing: subpixel-antialiased; -webkit-font-smoothing: subpixel-antialiased;
box-shadow: 0 1px 3px rgba(0,0,0,0.13); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
} }
a { a {
@ -27,7 +27,7 @@ a:focus {
color: #124964; color: #124964;
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.ie8 a:focus { .ie8 a:focus {
@ -163,7 +163,7 @@ textarea {
font-size: 15px; font-size: 15px;
padding: 3px 5px; padding: 3px 5px;
border: 1px solid #ddd; border: 1px solid #ddd;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.07); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
} }
input, input,

View File

@ -11,7 +11,7 @@ body {
padding: 20px 20px 10px 20px; padding: 20px 20px 10px 20px;
max-width: 700px; max-width: 700px;
-webkit-font-smoothing: subpixel-antialiased; -webkit-font-smoothing: subpixel-antialiased;
box-shadow: 0 1px 3px rgba(0,0,0,0.13); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
} }
a { a {
@ -27,7 +27,7 @@ a:focus {
color: #124964; color: #124964;
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.ie8 a:focus { .ie8 a:focus {
@ -163,7 +163,7 @@ textarea {
font-size: 15px; font-size: 15px;
padding: 3px 5px; padding: 3px 5px;
border: 1px solid #ddd; border: 1px solid #ddd;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.07); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
} }
input, input,

View File

@ -506,7 +506,7 @@ th.asc a:focus span.sorting-indicator:before {
.wp-list-table .toggle-row:focus:before { .wp-list-table .toggle-row:focus:before {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.ie8 .wp-list-table .toggle-row:focus:before { .ie8 .wp-list-table .toggle-row:focus:before {
@ -1211,15 +1211,15 @@ ul.cat-checklist {
.plugin-install #the-list td, .plugin-install #the-list td,
.upgrade .plugins td, .upgrade .plugins td,
.upgrade .plugins th { .upgrade .plugins th {
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
} }
.plugins tr.active.plugin-update-tr + tr.inactive th, .plugins tr.active.plugin-update-tr + tr.inactive th,
.plugins tr.active.plugin-update-tr + tr.inactive td, .plugins tr.active.plugin-update-tr + tr.inactive td,
.plugins tr.active + tr.inactive th, .plugins tr.active + tr.inactive th,
.plugins tr.active + tr.inactive td { .plugins tr.active + tr.inactive td {
border-top: 1px solid rgba(0,0,0,0.03); border-top: 1px solid rgba(0, 0, 0, 0.03);
box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1; box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02), inset 0 -1px 0 #e1e1e1;
} }
.plugins .update td, .plugins .update td,
@ -1257,7 +1257,7 @@ ul.cat-checklist {
.plugins .plugin-title .dashicons:before { .plugins .plugin-title .dashicons:before {
padding: 2px; padding: 2px;
background-color: #eee; background-color: #eee;
box-shadow: inset 0 0 10px rgba(160,165,170,.15); box-shadow: inset 0 0 10px rgba(160, 165, 170, 0.15);
font-size: 60px; font-size: 60px;
color: #B4B9BE; color: #B4B9BE;
} }
@ -1290,7 +1290,7 @@ ul.cat-checklist {
} }
.plugins .plugin-update-tr .plugin-update { .plugins .plugin-update-tr .plugin-update {
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
overflow: hidden; /* clearfix */ overflow: hidden; /* clearfix */
padding: 0; padding: 0;
} }
@ -2132,7 +2132,7 @@ div.action-links,
table.plugin-install #the-list tr { table.plugin-install #the-list tr {
display: block; display: block;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
} }
.plugin-card { .plugin-card {

View File

@ -506,7 +506,7 @@ th.asc a:focus span.sorting-indicator:before {
.wp-list-table .toggle-row:focus:before { .wp-list-table .toggle-row:focus:before {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.ie8 .wp-list-table .toggle-row:focus:before { .ie8 .wp-list-table .toggle-row:focus:before {
@ -1211,15 +1211,15 @@ ul.cat-checklist {
.plugin-install #the-list td, .plugin-install #the-list td,
.upgrade .plugins td, .upgrade .plugins td,
.upgrade .plugins th { .upgrade .plugins th {
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
} }
.plugins tr.active.plugin-update-tr + tr.inactive th, .plugins tr.active.plugin-update-tr + tr.inactive th,
.plugins tr.active.plugin-update-tr + tr.inactive td, .plugins tr.active.plugin-update-tr + tr.inactive td,
.plugins tr.active + tr.inactive th, .plugins tr.active + tr.inactive th,
.plugins tr.active + tr.inactive td { .plugins tr.active + tr.inactive td {
border-top: 1px solid rgba(0,0,0,0.03); border-top: 1px solid rgba(0, 0, 0, 0.03);
box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1; box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02), inset 0 -1px 0 #e1e1e1;
} }
.plugins .update td, .plugins .update td,
@ -1257,7 +1257,7 @@ ul.cat-checklist {
.plugins .plugin-title .dashicons:before { .plugins .plugin-title .dashicons:before {
padding: 2px; padding: 2px;
background-color: #eee; background-color: #eee;
box-shadow: inset 0 0 10px rgba(160,165,170,.15); box-shadow: inset 0 0 10px rgba(160, 165, 170, 0.15);
font-size: 60px; font-size: 60px;
color: #B4B9BE; color: #B4B9BE;
} }
@ -1290,7 +1290,7 @@ ul.cat-checklist {
} }
.plugins .plugin-update-tr .plugin-update { .plugins .plugin-update-tr .plugin-update {
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
overflow: hidden; /* clearfix */ overflow: hidden; /* clearfix */
padding: 0; padding: 0;
} }
@ -2132,7 +2132,7 @@ div.action-links,
table.plugin-install #the-list tr { table.plugin-install #the-list tr {
display: block; display: block;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
} }
.plugin-card { .plugin-card {

View File

@ -37,7 +37,7 @@ a:focus {
color: #124964; color: #124964;
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.ie8 a:focus { .ie8 a:focus {
@ -56,7 +56,7 @@ p {
margin-right: 0; margin-right: 0;
margin-bottom: 20px; margin-bottom: 20px;
background-color: #fff; background-color: #fff;
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1); box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
} }
.login .success { .login .success {
@ -104,7 +104,7 @@ p {
font-weight: 400; font-weight: 400;
overflow: hidden; overflow: hidden;
background: #fff; background: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.13); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
} }
.login form .forgetmenot { .login form .forgetmenot {

View File

@ -37,7 +37,7 @@ a:focus {
color: #124964; color: #124964;
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.ie8 a:focus { .ie8 a:focus {
@ -56,7 +56,7 @@ p {
margin-left: 0; margin-left: 0;
margin-bottom: 20px; margin-bottom: 20px;
background-color: #fff; background-color: #fff;
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1); box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
} }
.login .success { .login .success {
@ -104,7 +104,7 @@ p {
font-weight: 400; font-weight: 400;
overflow: hidden; overflow: hidden;
background: #fff; background: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.13); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
} }
.login form .forgetmenot { .login form .forgetmenot {

View File

@ -164,7 +164,7 @@
overflow: hidden; overflow: hidden;
border-radius: 22px; border-radius: 22px;
background: #ddd; background: #ddd;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
} }
.media-item .bar { .media-item .bar {
@ -174,7 +174,7 @@
margin-top: -22px; margin-top: -22px;
border-radius: 22px; border-radius: 22px;
background-color: #0073aa; background-color: #0073aa;
box-shadow: inset 0 0 2px rgba(0,0,0,0.3); box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
} }
.media-item .progress .percent { .media-item .progress .percent {
@ -186,7 +186,7 @@
text-align: center; text-align: center;
line-height: 22px; line-height: 22px;
font-weight: 400; font-weight: 400;
text-shadow: 0 1px 2px rgba(0,0,0,0.2); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
} }
.upload-php .fixed .column-parent { .upload-php .fixed .column-parent {
@ -222,7 +222,7 @@
.find-box { .find-box {
background-color: #fff; background-color: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
width: 600px; width: 600px;
overflow: hidden; overflow: hidden;
margin-right: -300px; margin-right: -300px;
@ -312,7 +312,7 @@
#find-posts-close:focus { #find-posts-close:focus {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 2px solid transparent; outline: 2px solid transparent;
outline-offset: -2px; outline-offset: -2px;
@ -1091,7 +1091,7 @@ border color while dragging a file over the uploader drop area */
.image-editor .imgedit-settings .imgedit-help-toggle:focus { .image-editor .imgedit-settings .imgedit-help-toggle:focus {
color: #0074a2; color: #0074a2;
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 2px solid transparent; outline: 2px solid transparent;
} }

View File

@ -164,7 +164,7 @@
overflow: hidden; overflow: hidden;
border-radius: 22px; border-radius: 22px;
background: #ddd; background: #ddd;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
} }
.media-item .bar { .media-item .bar {
@ -174,7 +174,7 @@
margin-top: -22px; margin-top: -22px;
border-radius: 22px; border-radius: 22px;
background-color: #0073aa; background-color: #0073aa;
box-shadow: inset 0 0 2px rgba(0,0,0,0.3); box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
} }
.media-item .progress .percent { .media-item .progress .percent {
@ -186,7 +186,7 @@
text-align: center; text-align: center;
line-height: 22px; line-height: 22px;
font-weight: 400; font-weight: 400;
text-shadow: 0 1px 2px rgba(0,0,0,0.2); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
} }
.upload-php .fixed .column-parent { .upload-php .fixed .column-parent {
@ -222,7 +222,7 @@
.find-box { .find-box {
background-color: #fff; background-color: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
width: 600px; width: 600px;
overflow: hidden; overflow: hidden;
margin-left: -300px; margin-left: -300px;
@ -312,7 +312,7 @@
#find-posts-close:focus { #find-posts-close:focus {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 2px solid transparent; outline: 2px solid transparent;
outline-offset: -2px; outline-offset: -2px;
@ -1091,7 +1091,7 @@ border color while dragging a file over the uploader drop area */
.image-editor .imgedit-settings .imgedit-help-toggle:focus { .image-editor .imgedit-settings .imgedit-help-toggle:focus {
color: #0074a2; color: #0074a2;
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 2px solid transparent; outline: 2px solid transparent;
} }

View File

@ -629,7 +629,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
.nav-menus-php .item-edit:focus:before { .nav-menus-php .item-edit:focus:before {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
/* Menu editing */ /* Menu editing */
@ -645,7 +645,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
z-index: 10; /* Keep .item-title's shadow from appearing on top of .menu-item-settings */ z-index: 10; /* Keep .item-title's shadow from appearing on top of .menu-item-settings */
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
border-top: none; border-top: none;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
} }
.menu-item-settings .field-move { .menu-item-settings .field-move {

View File

@ -629,7 +629,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
.nav-menus-php .item-edit:focus:before { .nav-menus-php .item-edit:focus:before {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
/* Menu editing */ /* Menu editing */
@ -645,7 +645,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
z-index: 10; /* Keep .item-title's shadow from appearing on top of .menu-item-settings */ z-index: 10; /* Keep .item-title's shadow from appearing on top of .menu-item-settings */
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
border-top: none; border-top: none;
box-shadow: 0 1px 1px rgba(0,0,0,0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
} }
.menu-item-settings .field-move { .menu-item-settings .field-move {

View File

@ -7,7 +7,7 @@
} }
.revisions-diff-frame { .revisions-diff-frame {
top: 10px; top: 10px;
} }
.revisions-controls { .revisions-controls {
@ -26,7 +26,7 @@
top: 0; top: 0;
height: 82px; height: 82px;
background: #fff; background: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
} }
.revisions-tickmarks { .revisions-tickmarks {
@ -113,8 +113,8 @@ body.folded .revisions .loading-indicator {
.revisions-meta { .revisions-meta {
margin-top: 20px; margin-top: 20px;
background-color: #fff; background-color: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
overflow: hidden; overflow: hidden;
} }
.revisions.pinned .revisions-meta { .revisions.pinned .revisions-meta {
@ -176,7 +176,7 @@ body.folded .revisions .loading-indicator {
.revisions-diff { .revisions-diff {
padding: 15px; padding: 15px;
background-color: #fff; background-color: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
} }
.revisions-diff h3:first-child { .revisions-diff h3:first-child {
@ -401,7 +401,7 @@ table.diff .diff-addedline ins {
.arrow:after { .arrow:after {
z-index: 9999; z-index: 9999;
background-color: #fff; background-color: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
} }
.arrow.top { .arrow.top {
@ -474,7 +474,7 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
.wp-slider .ui-slider-handle.ui-state-active { .wp-slider .ui-slider-handle.ui-state-active {
background: #eee; background: #eee;
border-color: #999; border-color: #999;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
transform: translateY(1px); transform: translateY(1px);
} }
@ -569,30 +569,33 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
#diff-previous-revision { #diff-previous-revision {
margin-top: -1em; margin-top: -1em;
} }
.revisions-buttons {
overflow: hidden;
margin-bottom: 15px;
}
.revisions-controls, .revisions-buttons {
.comparing-two-revisions .revisions-controls { overflow: hidden;
height: 170px; margin-bottom: 15px;
} }
.revisions-tooltip { .revisions-controls,
bottom: 130px; .comparing-two-revisions .revisions-controls {
z-index: 2; height: 170px;
} }
.revisions-tooltip {
bottom: 130px;
z-index: 2;
}
.diff-meta {
overflow: hidden;
}
.diff-meta {
overflow: hidden;
}
table.diff { table.diff {
-ms-word-break: break-all; -ms-word-break: break-all;
word-break: break-all; word-break: break-all;
word-wrap: break-word; word-wrap: break-word;
} }
.diff-meta input.restore-revision {
margin-top: 0; .diff-meta input.restore-revision {
} margin-top: 0;
}
} }

View File

@ -7,7 +7,7 @@
} }
.revisions-diff-frame { .revisions-diff-frame {
top: 10px; top: 10px;
} }
.revisions-controls { .revisions-controls {
@ -26,7 +26,7 @@
top: 0; top: 0;
height: 82px; height: 82px;
background: #fff; background: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
} }
.revisions-tickmarks { .revisions-tickmarks {
@ -113,8 +113,8 @@ body.folded .revisions .loading-indicator {
.revisions-meta { .revisions-meta {
margin-top: 20px; margin-top: 20px;
background-color: #fff; background-color: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
overflow: hidden; overflow: hidden;
} }
.revisions.pinned .revisions-meta { .revisions.pinned .revisions-meta {
@ -176,7 +176,7 @@ body.folded .revisions .loading-indicator {
.revisions-diff { .revisions-diff {
padding: 15px; padding: 15px;
background-color: #fff; background-color: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
} }
.revisions-diff h3:first-child { .revisions-diff h3:first-child {
@ -401,7 +401,7 @@ table.diff .diff-addedline ins {
.arrow:after { .arrow:after {
z-index: 9999; z-index: 9999;
background-color: #fff; background-color: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
} }
.arrow.top { .arrow.top {
@ -474,7 +474,7 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
.wp-slider .ui-slider-handle.ui-state-active { .wp-slider .ui-slider-handle.ui-state-active {
background: #eee; background: #eee;
border-color: #999; border-color: #999;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
transform: translateY(1px); transform: translateY(1px);
} }
@ -569,30 +569,33 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
#diff-previous-revision { #diff-previous-revision {
margin-top: -1em; margin-top: -1em;
} }
.revisions-buttons {
overflow: hidden;
margin-bottom: 15px;
}
.revisions-controls, .revisions-buttons {
.comparing-two-revisions .revisions-controls { overflow: hidden;
height: 170px; margin-bottom: 15px;
} }
.revisions-tooltip { .revisions-controls,
bottom: 130px; .comparing-two-revisions .revisions-controls {
z-index: 2; height: 170px;
} }
.revisions-tooltip {
bottom: 130px;
z-index: 2;
}
.diff-meta {
overflow: hidden;
}
.diff-meta {
overflow: hidden;
}
table.diff { table.diff {
-ms-word-break: break-all; -ms-word-break: break-all;
word-break: break-all; word-break: break-all;
word-wrap: break-word; word-wrap: break-word;
} }
.diff-meta input.restore-revision {
margin-top: 0; .diff-meta input.restore-revision {
} margin-top: 0;
}
} }

View File

@ -60,7 +60,7 @@ body.js .theme-browser.search-loading {
position: relative; position: relative;
width: 30.6%; width: 30.6%;
border: 1px solid #ddd; border: 1px solid #ddd;
box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
box-sizing: border-box; box-sizing: border-box;
} }
@ -84,12 +84,12 @@ body.js .theme-browser.search-loading {
height: 18px; height: 18px;
margin: 0; margin: 0;
padding: 15px; padding: 15px;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
overflow: hidden; overflow: hidden;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
background: #fff; background: #fff;
background: rgba(255,255,255,0.65); background: rgba(255, 255, 255, 0.65);
} }
/* Activate and Customize buttons, shown on hover and focus */ /* Activate and Customize buttons, shown on hover and focus */
@ -99,7 +99,7 @@ body.js .theme-browser.search-loading {
transition: opacity 0.1s ease-in-out; transition: opacity 0.1s ease-in-out;
height: auto; height: auto;
background: rgba(244, 244, 244, 0.7); background: rgba(244, 244, 244, 0.7);
border-right: 1px solid rgba(0,0,0,0.05); border-right: 1px solid rgba(0, 0, 0, 0.05);
} }
.theme-browser .theme:hover .theme-actions, .theme-browser .theme:hover .theme-actions,
@ -165,10 +165,10 @@ body.js .theme-browser.search-loading {
left: 20%; left: 20%;
right: 20%; right: 20%;
background: #23282d; background: #23282d;
background: rgba(0,0,0,0.7); background: rgba(0, 0, 0, 0.7);
color: #fff; color: #fff;
font-size: 15px; font-size: 15px;
text-shadow: 0 1px 0 rgba(0,0,0,0.6); text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
font-weight: 600; font-weight: 600;
padding: 15px 12px; padding: 15px 12px;
@ -179,7 +179,7 @@ body.js .theme-browser.search-loading {
.theme-browser .theme:focus { .theme-browser .theme:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 ); box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
} }
.theme-browser .theme:focus .more-details { .theme-browser .theme:focus .more-details {
@ -205,7 +205,7 @@ body.js .theme-browser.search-loading {
color: #fff; color: #fff;
padding-left: 110px; padding-left: 110px;
font-weight: 300; font-weight: 300;
box-shadow: inset 0 1px 1px rgba(0,0,0,0.5); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5);
} }
.theme-browser .customize-control .theme.active .theme-name { .theme-browser .customize-control .theme.active .theme-name {
@ -217,7 +217,7 @@ body.js .theme-browser.search-loading {
} }
.theme-browser .theme.active .theme-actions { .theme-browser .theme.active .theme-actions {
background: rgba(49,49,49,0.7); background: rgba(49, 49, 49, 0.7);
border-right: none; border-right: none;
opacity: 1; opacity: 1;
} }
@ -233,7 +233,7 @@ body.js .theme-browser.search-loading {
transform: translateY(-50%); transform: translateY(-50%);
left: 0; left: 0;
padding: 10px 15px; padding: 10px 15px;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
} }
.theme-browser .theme.active .theme-actions .button-primary { .theme-browser .theme.active .theme-actions .button-primary {
@ -367,7 +367,7 @@ body.js .theme-browser.search-loading {
top: 0; top: 0;
bottom: 0; bottom: 0;
background: #f1f1f1; background: #f1f1f1;
background: rgba( 238, 238, 238, 0.9 ); background: rgba(238, 238, 238, 0.9);
z-index: 10000; /* Over WP Pointers. */ z-index: 10000; /* Over WP Pointers. */
} }
@ -573,7 +573,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
box-sizing: border-box; box-sizing: border-box;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
box-shadow: 0 0 0 1px rgba(0,0,0,0.2); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
} }
.theme-overlay .screenshot:after { .theme-overlay .screenshot:after {
@ -1166,13 +1166,13 @@ div#custom-background-image img {
.background-position-control input[type="radio"]:checked ~ .button { .background-position-control input[type="radio"]:checked ~ .button {
background: #eee; background: #eee;
border-color: #999; border-color: #999;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, .5 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
z-index: 1; z-index: 1;
} }
.background-position-control input[type="radio"]:focus ~ .button { .background-position-control input[type="radio"]:focus ~ .button {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, .5 ), 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5), 0 0 3px rgba(0, 115, 170, 0.8);
color: #23282d; color: #23282d;
} }
@ -1529,7 +1529,7 @@ body.full-overlay-active {
.wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.wp-full-overlay .collapse-sidebar-label { .wp-full-overlay .collapse-sidebar-label {

View File

@ -60,7 +60,7 @@ body.js .theme-browser.search-loading {
position: relative; position: relative;
width: 30.6%; width: 30.6%;
border: 1px solid #ddd; border: 1px solid #ddd;
box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
box-sizing: border-box; box-sizing: border-box;
} }
@ -84,12 +84,12 @@ body.js .theme-browser.search-loading {
height: 18px; height: 18px;
margin: 0; margin: 0;
padding: 15px; padding: 15px;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
overflow: hidden; overflow: hidden;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
background: #fff; background: #fff;
background: rgba(255,255,255,0.65); background: rgba(255, 255, 255, 0.65);
} }
/* Activate and Customize buttons, shown on hover and focus */ /* Activate and Customize buttons, shown on hover and focus */
@ -99,7 +99,7 @@ body.js .theme-browser.search-loading {
transition: opacity 0.1s ease-in-out; transition: opacity 0.1s ease-in-out;
height: auto; height: auto;
background: rgba(244, 244, 244, 0.7); background: rgba(244, 244, 244, 0.7);
border-left: 1px solid rgba(0,0,0,0.05); border-left: 1px solid rgba(0, 0, 0, 0.05);
} }
.theme-browser .theme:hover .theme-actions, .theme-browser .theme:hover .theme-actions,
@ -165,10 +165,10 @@ body.js .theme-browser.search-loading {
right: 20%; right: 20%;
left: 20%; left: 20%;
background: #23282d; background: #23282d;
background: rgba(0,0,0,0.7); background: rgba(0, 0, 0, 0.7);
color: #fff; color: #fff;
font-size: 15px; font-size: 15px;
text-shadow: 0 1px 0 rgba(0,0,0,0.6); text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
font-weight: 600; font-weight: 600;
padding: 15px 12px; padding: 15px 12px;
@ -179,7 +179,7 @@ body.js .theme-browser.search-loading {
.theme-browser .theme:focus { .theme-browser .theme:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 ); box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
} }
.theme-browser .theme:focus .more-details { .theme-browser .theme:focus .more-details {
@ -205,7 +205,7 @@ body.js .theme-browser.search-loading {
color: #fff; color: #fff;
padding-right: 110px; padding-right: 110px;
font-weight: 300; font-weight: 300;
box-shadow: inset 0 1px 1px rgba(0,0,0,0.5); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5);
} }
.theme-browser .customize-control .theme.active .theme-name { .theme-browser .customize-control .theme.active .theme-name {
@ -217,7 +217,7 @@ body.js .theme-browser.search-loading {
} }
.theme-browser .theme.active .theme-actions { .theme-browser .theme.active .theme-actions {
background: rgba(49,49,49,0.7); background: rgba(49, 49, 49, 0.7);
border-left: none; border-left: none;
opacity: 1; opacity: 1;
} }
@ -233,7 +233,7 @@ body.js .theme-browser.search-loading {
transform: translateY(-50%); transform: translateY(-50%);
right: 0; right: 0;
padding: 10px 15px; padding: 10px 15px;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
} }
.theme-browser .theme.active .theme-actions .button-primary { .theme-browser .theme.active .theme-actions .button-primary {
@ -367,7 +367,7 @@ body.js .theme-browser.search-loading {
top: 0; top: 0;
bottom: 0; bottom: 0;
background: #f1f1f1; background: #f1f1f1;
background: rgba( 238, 238, 238, 0.9 ); background: rgba(238, 238, 238, 0.9);
z-index: 10000; /* Over WP Pointers. */ z-index: 10000; /* Over WP Pointers. */
} }
@ -573,7 +573,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
box-sizing: border-box; box-sizing: border-box;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
box-shadow: 0 0 0 1px rgba(0,0,0,0.2); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
} }
.theme-overlay .screenshot:after { .theme-overlay .screenshot:after {
@ -1166,13 +1166,13 @@ div#custom-background-image img {
.background-position-control input[type="radio"]:checked ~ .button { .background-position-control input[type="radio"]:checked ~ .button {
background: #eee; background: #eee;
border-color: #999; border-color: #999;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, .5 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
z-index: 1; z-index: 1;
} }
.background-position-control input[type="radio"]:focus ~ .button { .background-position-control input[type="radio"]:focus ~ .button {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, .5 ), 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5), 0 0 3px rgba(0, 115, 170, 0.8);
color: #23282d; color: #23282d;
} }
@ -1529,7 +1529,7 @@ body.full-overlay-active {
.wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.wp-full-overlay .collapse-sidebar-label { .wp-full-overlay .collapse-sidebar-label {

View File

@ -222,7 +222,7 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
background-color: rgba( 0, 0, 0, .5 ); background-color: rgba(0, 0, 0, 0.5);
} }
.media-widget-gallery-preview .gallery-icon-placeholder-text { .media-widget-gallery-preview .gallery-icon-placeholder-text {
@ -308,7 +308,7 @@
.sidebar-name .handlediv:focus .toggle-indicator:before { .sidebar-name .handlediv:focus .toggle-indicator:before {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.sidebar-name h2, .sidebar-name h2,
@ -482,7 +482,7 @@ div#widgets-right .closed .widgets-sortables {
/* Dragging a widget over a closed sidebar */ /* Dragging a widget over a closed sidebar */
#widgets-right .widgets-holder-wrap.widget-hover { #widgets-right .widgets-holder-wrap.widget-hover {
border-color: #72777c; border-color: #72777c;
box-shadow: 0 1px 2px rgba(0,0,0,0.3); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
} }
/* Accessibility Mode */ /* Accessibility Mode */
@ -639,7 +639,7 @@ div#widgets-right .closed .widgets-sortables {
div#widgets-right .widget-top:hover, div#widgets-right .widget-top:hover,
#widgets-left .widget-top:hover { #widgets-left .widget-top:hover {
border-color: #999; border-color: #999;
box-shadow: 0 1px 2px rgba(0,0,0,0.1); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
} }
.widgets-chooser ul.widgets-chooser-sidebars { .widgets-chooser ul.widgets-chooser-sidebars {

View File

@ -222,7 +222,7 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
background-color: rgba( 0, 0, 0, .5 ); background-color: rgba(0, 0, 0, 0.5);
} }
.media-widget-gallery-preview .gallery-icon-placeholder-text { .media-widget-gallery-preview .gallery-icon-placeholder-text {
@ -308,7 +308,7 @@
.sidebar-name .handlediv:focus .toggle-indicator:before { .sidebar-name .handlediv:focus .toggle-indicator:before {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.sidebar-name h2, .sidebar-name h2,
@ -482,7 +482,7 @@ div#widgets-right .closed .widgets-sortables {
/* Dragging a widget over a closed sidebar */ /* Dragging a widget over a closed sidebar */
#widgets-right .widgets-holder-wrap.widget-hover { #widgets-right .widgets-holder-wrap.widget-hover {
border-color: #72777c; border-color: #72777c;
box-shadow: 0 1px 2px rgba(0,0,0,0.3); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
} }
/* Accessibility Mode */ /* Accessibility Mode */
@ -639,7 +639,7 @@ div#widgets-right .closed .widgets-sortables {
div#widgets-right .widget-top:hover, div#widgets-right .widget-top:hover,
#widgets-left .widget-top:hover { #widgets-left .widget-top:hover {
border-color: #999; border-color: #999;
box-shadow: 0 1px 2px rgba(0,0,0,0.1); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
} }
.widgets-chooser ul.widgets-chooser-sidebars { .widgets-chooser ul.widgets-chooser-sidebars {

View File

@ -1151,8 +1151,8 @@ final class WP_Customize_Widgets {
<style> <style>
.widget-customizer-highlighted-widget { .widget-customizer-highlighted-widget {
outline: none; outline: none;
-webkit-box-shadow: 0 0 2px rgba(30,140,190,0.8); -webkit-box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
box-shadow: 0 0 2px rgba(30,140,190,0.8); box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
position: relative; position: relative;
z-index: 1; z-index: 1;
} }

View File

@ -144,7 +144,7 @@ html:lang(he-il) .rtl #wpadminbar * {
#wpadminbar .shortlink-input { #wpadminbar .shortlink-input {
margin: 0; margin: 0;
padding: 0; padding: 0;
box-shadow: 0 3px 5px rgba(0,0,0,0.2); box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
background: #32373c; background: #32373c;
display: none; display: none;
position: absolute; position: absolute;
@ -247,7 +247,7 @@ html:lang(he-il) .rtl #wpadminbar * {
#wpadminbar .ab-item:before, #wpadminbar .ab-item:before,
#wpadminbar #adminbarsearch:before { #wpadminbar #adminbarsearch:before {
color: #a0a5aa; color: #a0a5aa;
color: rgba(240,245,250,0.6); color: rgba(240, 245, 250, 0.6);
} }
#wpadminbar .ab-icon:before, #wpadminbar .ab-icon:before,
@ -264,7 +264,7 @@ html:lang(he-il) .rtl #wpadminbar * {
#wpadminbar .ab-submenu .ab-item { #wpadminbar .ab-submenu .ab-item {
color: #b4b9be; color: #b4b9be;
color: rgba(240,245,250,0.7); color: rgba(240, 245, 250, 0.7);
} }
#wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop ul li a,
@ -272,7 +272,7 @@ html:lang(he-il) .rtl #wpadminbar * {
#wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a { #wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: #b4b9be; color: #b4b9be;
color: rgba(240,245,250,0.7); color: rgba(240, 245, 250, 0.7);
} }
#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:hover,
@ -633,7 +633,7 @@ html:lang(he-il) .rtl #wpadminbar * {
padding: 0 24px 0 3px; padding: 0 24px 0 3px;
margin: 0; margin: 0;
color: #ccc; color: #ccc;
background-color: rgba( 255, 255, 255, 0 ); background-color: rgba(255, 255, 255, 0);
border: none; border: none;
outline: none; outline: none;
cursor: pointer; cursor: pointer;
@ -648,7 +648,7 @@ html:lang(he-il) .rtl #wpadminbar * {
z-index: 10; z-index: 10;
color: #000; color: #000;
width: 200px; width: 200px;
background-color: rgba( 255, 255, 255, 0.9 ); background-color: rgba(255, 255, 255, 0.9);
cursor: text; cursor: text;
border: 0; border: 0;
} }
@ -726,7 +726,7 @@ html:lang(he-il) .rtl #wpadminbar * {
z-index: 100000; z-index: 100000;
line-height: normal; line-height: normal;
text-decoration: none; text-decoration: none;
box-shadow: 0 0 2px 2px rgba(0,0,0,.6); box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
} }
/** /**

View File

@ -144,7 +144,7 @@ html:lang(he-il) .rtl #wpadminbar * {
#wpadminbar .shortlink-input { #wpadminbar .shortlink-input {
margin: 0; margin: 0;
padding: 0; padding: 0;
box-shadow: 0 3px 5px rgba(0,0,0,0.2); box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
background: #32373c; background: #32373c;
display: none; display: none;
position: absolute; position: absolute;
@ -247,7 +247,7 @@ html:lang(he-il) .rtl #wpadminbar * {
#wpadminbar .ab-item:before, #wpadminbar .ab-item:before,
#wpadminbar #adminbarsearch:before { #wpadminbar #adminbarsearch:before {
color: #a0a5aa; color: #a0a5aa;
color: rgba(240,245,250,0.6); color: rgba(240, 245, 250, 0.6);
} }
#wpadminbar .ab-icon:before, #wpadminbar .ab-icon:before,
@ -264,7 +264,7 @@ html:lang(he-il) .rtl #wpadminbar * {
#wpadminbar .ab-submenu .ab-item { #wpadminbar .ab-submenu .ab-item {
color: #b4b9be; color: #b4b9be;
color: rgba(240,245,250,0.7); color: rgba(240, 245, 250, 0.7);
} }
#wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop ul li a,
@ -272,7 +272,7 @@ html:lang(he-il) .rtl #wpadminbar * {
#wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a { #wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: #b4b9be; color: #b4b9be;
color: rgba(240,245,250,0.7); color: rgba(240, 245, 250, 0.7);
} }
#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:hover,
@ -633,7 +633,7 @@ html:lang(he-il) .rtl #wpadminbar * {
padding: 0 3px 0 24px; padding: 0 3px 0 24px;
margin: 0; margin: 0;
color: #ccc; color: #ccc;
background-color: rgba( 255, 255, 255, 0 ); background-color: rgba(255, 255, 255, 0);
border: none; border: none;
outline: none; outline: none;
cursor: pointer; cursor: pointer;
@ -648,7 +648,7 @@ html:lang(he-il) .rtl #wpadminbar * {
z-index: 10; z-index: 10;
color: #000; color: #000;
width: 200px; width: 200px;
background-color: rgba( 255, 255, 255, 0.9 ); background-color: rgba(255, 255, 255, 0.9);
cursor: text; cursor: text;
border: 0; border: 0;
} }
@ -726,7 +726,7 @@ html:lang(he-il) .rtl #wpadminbar * {
z-index: 100000; z-index: 100000;
line-height: normal; line-height: normal;
text-decoration: none; text-decoration: none;
box-shadow: 0 0 2px 2px rgba(0,0,0,.6); box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
} }
/** /**

View File

@ -149,7 +149,7 @@ TABLE OF CONTENTS:
.wp-core-ui .button:focus, .wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus { .wp-core-ui .button-secondary:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
} }
.wp-core-ui .button.active, .wp-core-ui .button.active,
@ -158,15 +158,15 @@ TABLE OF CONTENTS:
.wp-core-ui .button-secondary:active { .wp-core-ui .button-secondary:active {
background: #eee; background: #eee;
border-color: #999; border-color: #999;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
transform: translateY(1px); transform: translateY(1px);
} }
.wp-core-ui .button.active:focus { .wp-core-ui .button.active:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: box-shadow:
inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ), inset 0 2px 5px -3px rgba(0, 0, 0, 0.5),
0 0 3px rgba( 0, 115, 170, .8 ); 0 0 3px rgba(0, 115, 170, 0.8);
} }
.wp-core-ui .button[disabled], .wp-core-ui .button[disabled],
@ -212,7 +212,7 @@ TABLE OF CONTENTS:
color: #124964; color: #124964;
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 1px solid transparent; outline: 1px solid transparent;
} }
@ -279,7 +279,7 @@ TABLE OF CONTENTS:
background: #008ec2 !important; background: #008ec2 !important;
border-color: #007cb2 !important; border-color: #007cb2 !important;
box-shadow: none !important; box-shadow: none !important;
text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.1 ) !important; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
cursor: default; cursor: default;
} }

View File

@ -149,7 +149,7 @@ TABLE OF CONTENTS:
.wp-core-ui .button:focus, .wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus { .wp-core-ui .button-secondary:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
} }
.wp-core-ui .button.active, .wp-core-ui .button.active,
@ -158,15 +158,15 @@ TABLE OF CONTENTS:
.wp-core-ui .button-secondary:active { .wp-core-ui .button-secondary:active {
background: #eee; background: #eee;
border-color: #999; border-color: #999;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
transform: translateY(1px); transform: translateY(1px);
} }
.wp-core-ui .button.active:focus { .wp-core-ui .button.active:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: box-shadow:
inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ), inset 0 2px 5px -3px rgba(0, 0, 0, 0.5),
0 0 3px rgba( 0, 115, 170, .8 ); 0 0 3px rgba(0, 115, 170, 0.8);
} }
.wp-core-ui .button[disabled], .wp-core-ui .button[disabled],
@ -212,7 +212,7 @@ TABLE OF CONTENTS:
color: #124964; color: #124964;
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 1px solid transparent; outline: 1px solid transparent;
} }
@ -279,7 +279,7 @@ TABLE OF CONTENTS:
background: #008ec2 !important; background: #008ec2 !important;
border-color: #007cb2 !important; border-color: #007cb2 !important;
box-shadow: none !important; box-shadow: none !important;
text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.1 ) !important; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
cursor: default; cursor: default;
} }

View File

@ -47,7 +47,7 @@
background: #0085ba !important; background: #0085ba !important;
border-radius: 50%; border-radius: 50%;
border: 2px solid #fff; border: 2px solid #fff;
box-shadow: 0 2px 1px rgba(46,68,83,0.15); box-shadow: 0 2px 1px rgba(46, 68, 83, 0.15);
text-align: center; text-align: center;
cursor: pointer; cursor: pointer;
box-sizing: border-box; box-sizing: border-box;

View File

@ -47,7 +47,7 @@
background: #0085ba !important; background: #0085ba !important;
border-radius: 50%; border-radius: 50%;
border: 2px solid #fff; border: 2px solid #fff;
box-shadow: 0 2px 1px rgba(46,68,83,0.15); box-shadow: 0 2px 1px rgba(46, 68, 83, 0.15);
text-align: center; text-align: center;
cursor: pointer; cursor: pointer;
box-sizing: border-box; box-sizing: border-box;

View File

@ -34,7 +34,7 @@
.mce-window { .mce-window {
border-radius: 0; border-radius: 0;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
-webkit-font-smoothing: subpixel-antialiased; -webkit-font-smoothing: subpixel-antialiased;
transition: none; transition: none;
} }
@ -88,7 +88,7 @@
.mce-window-head .mce-close:focus .mce-i-remove, .mce-window-head .mce-close:focus .mce-i-remove,
div.mce-tab:focus { div.mce-tab:focus {
box-shadow: 0 0 0 1px #5b9dd9, box-shadow: 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.mce-window .mce-window-head .mce-dragh { .mce-window .mce-window-head .mce-dragh {
@ -104,7 +104,7 @@ div.mce-tab:focus {
#wp-link .query-results { #wp-link .query-results {
border: 1px solid #ddd; border: 1px solid #ddd;
border-radius: 0; border-radius: 0;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.07); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
transition: .05s all ease-in-out; transition: .05s all ease-in-out;
} }
@ -113,7 +113,7 @@ div.mce-tab:focus {
.mce-checkbox:focus i.mce-i-checkbox, .mce-checkbox:focus i.mce-i-checkbox,
#wp-link .query-results:focus { #wp-link .query-results:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 2px rgba(30,140,190,0.8); box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
} }
.mce-window .mce-wp-help { .mce-window .mce-wp-help {
@ -189,7 +189,7 @@ div.mce-tab:focus {
font-weight: 600; font-weight: 600;
margin: 0; margin: 0;
background: #eaeaea; background: #eaeaea;
background: rgba(0,0,0,0.08); background: rgba(0, 0, 0, 0.08);
} }
.mce-window .wp-help-th-center td:nth-child(odd), .mce-window .wp-help-th-center td:nth-child(odd),
@ -200,9 +200,9 @@ div.mce-tab:focus {
/* TinyMCE menus */ /* TinyMCE menus */
.mce-menu, .mce-menu,
.mce-floatpanel.mce-popover { .mce-floatpanel.mce-popover {
border-color: rgba(0,0,0,0.15); border-color: rgba(0, 0, 0, 0.15);
border-radius: 0; border-radius: 0;
box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 ); box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
} }
.mce-menu, .mce-menu,
@ -253,7 +253,7 @@ div.mce-toolbar-grp {
div.mce-inline-toolbar-grp { div.mce-inline-toolbar-grp {
border: 1px solid #a0a5aa; border: 1px solid #a0a5aa;
border-radius: 2px; border-radius: 2px;
box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 ); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
box-sizing: border-box; box-sizing: border-box;
margin-bottom: 8px; margin-bottom: 8px;
position: absolute; position: absolute;
@ -413,7 +413,7 @@ div.mce-path {
background: #fafafa; background: #fafafa;
border-color: #555d66; border-color: #555d66;
color: #23282d; color: #23282d;
box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 ); box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08);
outline: none; outline: none;
} }
@ -422,7 +422,7 @@ div.mce-path {
.qt-dfw.active { .qt-dfw.active {
background: #ebebeb; background: #ebebeb;
border-color: #555d66; border-color: #555d66;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.3 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.3);
} }
.mce-btn.mce-active, .mce-btn.mce-active,
@ -534,7 +534,7 @@ div.mce-path {
direction: rtl; direction: rtl;
background: #fff; background: #fff;
border: 1px solid #ddd; border: 1px solid #ddd;
box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2); box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, 0.2);
} }
.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover, .mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover,
@ -639,7 +639,7 @@ div.mce-menubar {
color: #124964; color: #124964;
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
div.mce-menu .mce-menu-item-sep, div.mce-menu .mce-menu-item-sep,
@ -711,13 +711,13 @@ div.mce-menu .mce-menu-item-sep,
.mce-window .mce-btn:focus { .mce-window .mce-btn:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
} }
.mce-window .mce-btn:active { .mce-window .mce-btn:active {
background: #eee; background: #eee;
border-color: #999; border-color: #999;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
transform: translateY(1px); transform: translateY(1px);
} }
@ -767,7 +767,7 @@ div.mce-menu .mce-menu-item-sep,
background: #008ec2 !important; background: #008ec2 !important;
border-color: #007cb2 !important; border-color: #007cb2 !important;
box-shadow: none !important; box-shadow: none !important;
text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.1 ) !important; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
cursor: default; cursor: default;
} }
@ -810,7 +810,7 @@ div.mce-menu .mce-menu-item-sep,
.mce-tooltip-inner { .mce-tooltip-inner {
border-radius: 3px; border-radius: 3px;
box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 ); box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
color: #fff; color: #fff;
font-size: 12px; font-size: 12px;
} }
@ -1140,7 +1140,7 @@ i.mce-i-wp_code:before {
.wp-switch-editor:focus { .wp-switch-editor:focus {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
outline: none; outline: none;
color: #23282d; color: #23282d;
} }
@ -1361,7 +1361,7 @@ i.mce-i-wp_code:before {
#wp-link-wrap { #wp-link-wrap {
display: none; display: none;
background-color: #fff; background-color: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
width: 500px; width: 500px;
overflow: hidden; overflow: hidden;
margin-right: -250px; margin-right: -250px;
@ -1450,7 +1450,7 @@ i.mce-i-wp_code:before {
outline: none; outline: none;
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
#wp-link-wrap #link-selector { #wp-link-wrap #link-selector {
@ -1796,7 +1796,7 @@ div.wp-link-input input {
list-style: none; list-style: none;
position: absolute; position: absolute;
border: 1px solid #5b9dd9; border: 1px solid #5b9dd9;
box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 ); box-shadow: 0 1px 2px rgba(30, 140, 190, 0.8);
background-color: #fff; background-color: #fff;
} }

View File

@ -34,7 +34,7 @@
.mce-window { .mce-window {
border-radius: 0; border-radius: 0;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
-webkit-font-smoothing: subpixel-antialiased; -webkit-font-smoothing: subpixel-antialiased;
transition: none; transition: none;
} }
@ -88,7 +88,7 @@
.mce-window-head .mce-close:focus .mce-i-remove, .mce-window-head .mce-close:focus .mce-i-remove,
div.mce-tab:focus { div.mce-tab:focus {
box-shadow: 0 0 0 1px #5b9dd9, box-shadow: 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.mce-window .mce-window-head .mce-dragh { .mce-window .mce-window-head .mce-dragh {
@ -104,7 +104,7 @@ div.mce-tab:focus {
#wp-link .query-results { #wp-link .query-results {
border: 1px solid #ddd; border: 1px solid #ddd;
border-radius: 0; border-radius: 0;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.07); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
transition: .05s all ease-in-out; transition: .05s all ease-in-out;
} }
@ -113,7 +113,7 @@ div.mce-tab:focus {
.mce-checkbox:focus i.mce-i-checkbox, .mce-checkbox:focus i.mce-i-checkbox,
#wp-link .query-results:focus { #wp-link .query-results:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 2px rgba(30,140,190,0.8); box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
} }
.mce-window .mce-wp-help { .mce-window .mce-wp-help {
@ -189,7 +189,7 @@ div.mce-tab:focus {
font-weight: 600; font-weight: 600;
margin: 0; margin: 0;
background: #eaeaea; background: #eaeaea;
background: rgba(0,0,0,0.08); background: rgba(0, 0, 0, 0.08);
} }
.mce-window .wp-help-th-center td:nth-child(odd), .mce-window .wp-help-th-center td:nth-child(odd),
@ -200,9 +200,9 @@ div.mce-tab:focus {
/* TinyMCE menus */ /* TinyMCE menus */
.mce-menu, .mce-menu,
.mce-floatpanel.mce-popover { .mce-floatpanel.mce-popover {
border-color: rgba(0,0,0,0.15); border-color: rgba(0, 0, 0, 0.15);
border-radius: 0; border-radius: 0;
box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 ); box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
} }
.mce-menu, .mce-menu,
@ -253,7 +253,7 @@ div.mce-toolbar-grp {
div.mce-inline-toolbar-grp { div.mce-inline-toolbar-grp {
border: 1px solid #a0a5aa; border: 1px solid #a0a5aa;
border-radius: 2px; border-radius: 2px;
box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 ); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
box-sizing: border-box; box-sizing: border-box;
margin-bottom: 8px; margin-bottom: 8px;
position: absolute; position: absolute;
@ -413,7 +413,7 @@ div.mce-path {
background: #fafafa; background: #fafafa;
border-color: #555d66; border-color: #555d66;
color: #23282d; color: #23282d;
box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 ); box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08);
outline: none; outline: none;
} }
@ -422,7 +422,7 @@ div.mce-path {
.qt-dfw.active { .qt-dfw.active {
background: #ebebeb; background: #ebebeb;
border-color: #555d66; border-color: #555d66;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.3 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.3);
} }
.mce-btn.mce-active, .mce-btn.mce-active,
@ -534,7 +534,7 @@ div.mce-path {
direction: ltr; direction: ltr;
background: #fff; background: #fff;
border: 1px solid #ddd; border: 1px solid #ddd;
box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2); box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, 0.2);
} }
.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover, .mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover,
@ -639,7 +639,7 @@ div.mce-menubar {
color: #124964; color: #124964;
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
div.mce-menu .mce-menu-item-sep, div.mce-menu .mce-menu-item-sep,
@ -711,13 +711,13 @@ div.mce-menu .mce-menu-item-sep,
.mce-window .mce-btn:focus { .mce-window .mce-btn:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
} }
.mce-window .mce-btn:active { .mce-window .mce-btn:active {
background: #eee; background: #eee;
border-color: #999; border-color: #999;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
transform: translateY(1px); transform: translateY(1px);
} }
@ -767,7 +767,7 @@ div.mce-menu .mce-menu-item-sep,
background: #008ec2 !important; background: #008ec2 !important;
border-color: #007cb2 !important; border-color: #007cb2 !important;
box-shadow: none !important; box-shadow: none !important;
text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.1 ) !important; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
cursor: default; cursor: default;
} }
@ -810,7 +810,7 @@ div.mce-menu .mce-menu-item-sep,
.mce-tooltip-inner { .mce-tooltip-inner {
border-radius: 3px; border-radius: 3px;
box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 ); box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
color: #fff; color: #fff;
font-size: 12px; font-size: 12px;
} }
@ -1140,7 +1140,7 @@ i.mce-i-wp_code:before {
.wp-switch-editor:focus { .wp-switch-editor:focus {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
outline: none; outline: none;
color: #23282d; color: #23282d;
} }
@ -1361,7 +1361,7 @@ i.mce-i-wp_code:before {
#wp-link-wrap { #wp-link-wrap {
display: none; display: none;
background-color: #fff; background-color: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
width: 500px; width: 500px;
overflow: hidden; overflow: hidden;
margin-left: -250px; margin-left: -250px;
@ -1450,7 +1450,7 @@ i.mce-i-wp_code:before {
outline: none; outline: none;
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
#wp-link-wrap #link-selector { #wp-link-wrap #link-selector {
@ -1796,7 +1796,7 @@ div.wp-link-input input {
list-style: none; list-style: none;
position: absolute; position: absolute;
border: 1px solid #5b9dd9; border: 1px solid #5b9dd9;
box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 ); box-shadow: 0 1px 2px rgba(30, 140, 190, 0.8);
background-color: #fff; background-color: #fff;
} }

View File

@ -221,13 +221,13 @@
.ui-button:focus { .ui-button:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
} }
.ui-button:active { .ui-button:active {
background: #eee; background: #eee;
border-color: #999; border-color: #999;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
transform: translateY(1px); transform: translateY(1px);
} }
@ -263,7 +263,7 @@
right: 0; right: 0;
z-index: 100102; z-index: 100102;
background-color: #fff; background-color: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
} }
.ui-dialog-titlebar { .ui-dialog-titlebar {

View File

@ -221,13 +221,13 @@
.ui-button:focus { .ui-button:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
} }
.ui-button:active { .ui-button:active {
background: #eee; background: #eee;
border-color: #999; border-color: #999;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
transform: translateY(1px); transform: translateY(1px);
} }
@ -263,7 +263,7 @@
left: 0; left: 0;
z-index: 100102; z-index: 100102;
background-color: #fff; background-color: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
} }
.ui-dialog-titlebar { .ui-dialog-titlebar {

View File

@ -47,7 +47,7 @@
.media-frame a:focus { .media-frame a:focus {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
color: #124964; color: #124964;
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 1px solid transparent; outline: 1px solid transparent;
@ -195,7 +195,7 @@
.media-modal-close:focus { .media-modal-close:focus {
color: #00a0d2; color: #00a0d2;
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 2px solid transparent; outline: 2px solid transparent;
outline-offset: -2px; outline-offset: -2px;
@ -222,7 +222,7 @@
bottom: 0; bottom: 0;
overflow: auto; overflow: auto;
min-height: 300px; min-height: 300px;
box-shadow: 0 5px 15px rgba(0,0,0,0.7); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
background: #fcfcfc; background: #fcfcfc;
-webkit-font-smoothing: subpixel-antialiased; -webkit-font-smoothing: subpixel-antialiased;
} }
@ -554,7 +554,7 @@
.media-menu > a:hover { .media-menu > a:hover {
color: #0073aa; color: #0073aa;
background: rgba( 0, 0, 0, 0.04 ); background: rgba(0, 0, 0, 0.04);
} }
.media-menu > a:active { .media-menu > a:active {
@ -715,7 +715,7 @@
.media-frame.hide-router .media-frame-title { .media-frame.hide-router .media-frame-title {
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ddd;
box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 ); box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1);
} }
.media-frame-title .dashicons { .media-frame-title .dashicons {
@ -861,8 +861,8 @@
.wp-core-ui .attachment-preview { .wp-core-ui .attachment-preview {
position: relative; position: relative;
box-shadow: box-shadow:
inset 0 0 15px rgba( 0, 0, 0, 0.1 ), inset 0 0 15px rgba(0, 0, 0, 0.1),
inset 0 0 0 1px rgba( 0, 0, 0, 0.05 ); inset 0 0 0 1px rgba(0, 0, 0, 0.05);
background: #eee; background: #eee;
cursor: pointer; cursor: pointer;
} }
@ -905,7 +905,7 @@
right: 0; right: 0;
left: 0; left: 0;
bottom: 0; bottom: 0;
box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 ); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
overflow: hidden; overflow: hidden;
} }
@ -946,8 +946,8 @@
word-wrap: break-word; word-wrap: break-word;
text-align: center; text-align: center;
font-weight: 600; font-weight: 600;
background: rgba( 255, 255, 255, 0.8 ); background: rgba(255, 255, 255, 0.8);
box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 ); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
} }
.wp-core-ui .attachment .filename div { .wp-core-ui .attachment .filename div {
@ -969,7 +969,7 @@
background-color: #fff; background-color: #fff;
background-position: -96px 4px; background-position: -96px 4px;
border-radius: 3px; border-radius: 3px;
box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
transition: none; transition: none;
} }
@ -991,7 +991,7 @@
outline: none; outline: none;
background: #eee; background: #eee;
cursor: pointer; cursor: pointer;
box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba( 0, 0, 0, 0.15 ); box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(0, 0, 0, 0.15);
} }
.wp-core-ui .attachment .check .media-modal-icon { .wp-core-ui .attachment .check .media-modal-icon {
@ -1124,7 +1124,7 @@
.uploader-inline .close:focus { .uploader-inline .close:focus {
outline: 1px solid #5b9dd9; outline: 1px solid #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
} }
.attachments-browser.hide-sidebar .attachments, .attachments-browser.hide-sidebar .attachments,
@ -1156,7 +1156,7 @@
margin: 10px auto; margin: 10px auto;
border-radius: 10px; border-radius: 10px;
background: #ddd; background: #ddd;
background: rgba( 0, 0, 0, 0.1 ); background: rgba(0, 0, 0, 0.1);
} }
.media-progress-bar div { .media-progress-bar div {
@ -1278,7 +1278,7 @@
right: 0; right: 0;
left: 0; left: 0;
bottom: 0; bottom: 0;
background: rgba( 0, 86, 132, 0.9 ); background: rgba(0, 86, 132, 0.9);
z-index: 250000; z-index: 250000;
display: none; display: none;
text-align: center; text-align: center;
@ -1520,7 +1520,7 @@
left: 0; left: 0;
bottom: 0; bottom: 0;
width: 25px; width: 25px;
background-image: linear-gradient(to right, rgba( 255, 255, 255, 1 ), rgba( 255, 255, 255, 0 )); background-image: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
} }
.media-selection .attachment .filename { .media-selection .attachment .filename {
@ -1612,7 +1612,7 @@
.uploading .attachment-info .thumbnail { .uploading .attachment-info .thumbnail {
width: 120px; width: 120px;
height: 80px; height: 80px;
box-shadow: inset 0 0 15px rgba( 0, 0, 0, 0.1 ); box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
} }
.uploading .attachment-info .media-progress-bar { .uploading .attachment-info .media-progress-bar {
@ -1627,7 +1627,7 @@
right: 0; right: 0;
left: 0; left: 0;
bottom: 0; bottom: 0;
box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 ); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
overflow: hidden; overflow: hidden;
} }
@ -1792,7 +1792,7 @@
.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:focus { .wp-core-ui.media-modal .image-editor .imgedit-help-toggle:focus {
color: #0074a2; color: #0074a2;
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 2px solid transparent; outline: 2px solid transparent;
} }
@ -1841,7 +1841,7 @@
padding: 12px 14px; padding: 12px 14px;
width: 100%; width: 100%;
min-width: 200px; min-width: 200px;
box-shadow: inset -2px 2px 4px -2px rgba( 0, 0, 0, 0.1 ); box-shadow: inset -2px 2px 4px -2px rgba(0, 0, 0, 0.1);
} }
.media-frame .embed-url .spinner { .media-frame .embed-url .spinner {
@ -1889,7 +1889,7 @@
.mejs-container:focus { .mejs-container:focus {
outline: 1px solid #5b9dd9; outline: 1px solid #5b9dd9;
box-shadow: 0 0 2px 1px rgba(30, 140, 190, .8); box-shadow: 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.image-details .media-modal { .image-details .media-modal {
@ -2028,7 +2028,7 @@
right: 0; right: 0;
left: 0; left: 0;
bottom: 0; bottom: 0;
box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 ); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
overflow: hidden; overflow: hidden;
} }
@ -2116,7 +2116,7 @@
/* Drag & drop on the editor upload */ /* Drag & drop on the editor upload */
.wp-editor-wrap .uploader-editor { .wp-editor-wrap .uploader-editor {
background: rgba( 150, 150, 150, 0.9 ); background: rgba(150, 150, 150, 0.9);
position: absolute; position: absolute;
top: 0; top: 0;
right: 0; right: 0;
@ -2152,7 +2152,7 @@
} }
.wp-editor-wrap .uploader-editor.droppable { .wp-editor-wrap .uploader-editor.droppable {
background: rgba( 0, 86, 132, 0.9 ); background: rgba(0, 86, 132, 0.9);
} }
.wp-editor-wrap .uploader-editor.droppable .uploader-editor-title { .wp-editor-wrap .uploader-editor.droppable .uploader-editor-title {

View File

@ -47,7 +47,7 @@
.media-frame a:focus { .media-frame a:focus {
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
color: #124964; color: #124964;
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 1px solid transparent; outline: 1px solid transparent;
@ -195,7 +195,7 @@
.media-modal-close:focus { .media-modal-close:focus {
color: #00a0d2; color: #00a0d2;
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 2px solid transparent; outline: 2px solid transparent;
outline-offset: -2px; outline-offset: -2px;
@ -222,7 +222,7 @@
bottom: 0; bottom: 0;
overflow: auto; overflow: auto;
min-height: 300px; min-height: 300px;
box-shadow: 0 5px 15px rgba(0,0,0,0.7); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
background: #fcfcfc; background: #fcfcfc;
-webkit-font-smoothing: subpixel-antialiased; -webkit-font-smoothing: subpixel-antialiased;
} }
@ -554,7 +554,7 @@
.media-menu > a:hover { .media-menu > a:hover {
color: #0073aa; color: #0073aa;
background: rgba( 0, 0, 0, 0.04 ); background: rgba(0, 0, 0, 0.04);
} }
.media-menu > a:active { .media-menu > a:active {
@ -715,7 +715,7 @@
.media-frame.hide-router .media-frame-title { .media-frame.hide-router .media-frame-title {
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ddd;
box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 ); box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1);
} }
.media-frame-title .dashicons { .media-frame-title .dashicons {
@ -861,8 +861,8 @@
.wp-core-ui .attachment-preview { .wp-core-ui .attachment-preview {
position: relative; position: relative;
box-shadow: box-shadow:
inset 0 0 15px rgba( 0, 0, 0, 0.1 ), inset 0 0 15px rgba(0, 0, 0, 0.1),
inset 0 0 0 1px rgba( 0, 0, 0, 0.05 ); inset 0 0 0 1px rgba(0, 0, 0, 0.05);
background: #eee; background: #eee;
cursor: pointer; cursor: pointer;
} }
@ -905,7 +905,7 @@
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 ); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
overflow: hidden; overflow: hidden;
} }
@ -946,8 +946,8 @@
word-wrap: break-word; word-wrap: break-word;
text-align: center; text-align: center;
font-weight: 600; font-weight: 600;
background: rgba( 255, 255, 255, 0.8 ); background: rgba(255, 255, 255, 0.8);
box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 ); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
} }
.wp-core-ui .attachment .filename div { .wp-core-ui .attachment .filename div {
@ -969,7 +969,7 @@
background-color: #fff; background-color: #fff;
background-position: -96px 4px; background-position: -96px 4px;
border-radius: 3px; border-radius: 3px;
box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
transition: none; transition: none;
} }
@ -991,7 +991,7 @@
outline: none; outline: none;
background: #eee; background: #eee;
cursor: pointer; cursor: pointer;
box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba( 0, 0, 0, 0.15 ); box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(0, 0, 0, 0.15);
} }
.wp-core-ui .attachment .check .media-modal-icon { .wp-core-ui .attachment .check .media-modal-icon {
@ -1124,7 +1124,7 @@
.uploader-inline .close:focus { .uploader-inline .close:focus {
outline: 1px solid #5b9dd9; outline: 1px solid #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
} }
.attachments-browser.hide-sidebar .attachments, .attachments-browser.hide-sidebar .attachments,
@ -1156,7 +1156,7 @@
margin: 10px auto; margin: 10px auto;
border-radius: 10px; border-radius: 10px;
background: #ddd; background: #ddd;
background: rgba( 0, 0, 0, 0.1 ); background: rgba(0, 0, 0, 0.1);
} }
.media-progress-bar div { .media-progress-bar div {
@ -1278,7 +1278,7 @@
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
background: rgba( 0, 86, 132, 0.9 ); background: rgba(0, 86, 132, 0.9);
z-index: 250000; z-index: 250000;
display: none; display: none;
text-align: center; text-align: center;
@ -1520,7 +1520,7 @@
right: 0; right: 0;
bottom: 0; bottom: 0;
width: 25px; width: 25px;
background-image: linear-gradient(to left, rgba( 255, 255, 255, 1 ), rgba( 255, 255, 255, 0 )); background-image: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
} }
.media-selection .attachment .filename { .media-selection .attachment .filename {
@ -1612,7 +1612,7 @@
.uploading .attachment-info .thumbnail { .uploading .attachment-info .thumbnail {
width: 120px; width: 120px;
height: 80px; height: 80px;
box-shadow: inset 0 0 15px rgba( 0, 0, 0, 0.1 ); box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
} }
.uploading .attachment-info .media-progress-bar { .uploading .attachment-info .media-progress-bar {
@ -1627,7 +1627,7 @@
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 ); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
overflow: hidden; overflow: hidden;
} }
@ -1792,7 +1792,7 @@
.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:focus { .wp-core-ui.media-modal .image-editor .imgedit-help-toggle:focus {
color: #0074a2; color: #0074a2;
border-color: #5b9dd9; border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
/* Only visible in Windows High Contrast mode */ /* Only visible in Windows High Contrast mode */
outline: 2px solid transparent; outline: 2px solid transparent;
} }
@ -1841,7 +1841,7 @@
padding: 12px 14px; padding: 12px 14px;
width: 100%; width: 100%;
min-width: 200px; min-width: 200px;
box-shadow: inset 2px 2px 4px -2px rgba( 0, 0, 0, 0.1 ); box-shadow: inset 2px 2px 4px -2px rgba(0, 0, 0, 0.1);
} }
.media-frame .embed-url .spinner { .media-frame .embed-url .spinner {
@ -1889,7 +1889,7 @@
.mejs-container:focus { .mejs-container:focus {
outline: 1px solid #5b9dd9; outline: 1px solid #5b9dd9;
box-shadow: 0 0 2px 1px rgba(30, 140, 190, .8); box-shadow: 0 0 2px 1px rgba(30, 140, 190, 0.8);
} }
.image-details .media-modal { .image-details .media-modal {
@ -2028,7 +2028,7 @@
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 ); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
overflow: hidden; overflow: hidden;
} }
@ -2116,7 +2116,7 @@
/* Drag & drop on the editor upload */ /* Drag & drop on the editor upload */
.wp-editor-wrap .uploader-editor { .wp-editor-wrap .uploader-editor {
background: rgba( 150, 150, 150, 0.9 ); background: rgba(150, 150, 150, 0.9);
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
@ -2152,7 +2152,7 @@
} }
.wp-editor-wrap .uploader-editor.droppable { .wp-editor-wrap .uploader-editor.droppable {
background: rgba( 0, 86, 132, 0.9 ); background: rgba(0, 86, 132, 0.9);
} }
.wp-editor-wrap .uploader-editor.droppable .uploader-editor-title { .wp-editor-wrap .uploader-editor.droppable .uploader-editor-title {

View File

@ -30,7 +30,7 @@
padding: 30px 0 0; padding: 30px 0 0;
background-color: #f1f1f1; background-color: #f1f1f1;
z-index: 1000011; /* needs to appear above #wp-auth-check-bg */ z-index: 1000011; /* needs to appear above #wp-auth-check-bg */
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
} }
@media screen and (max-width: 380px) { @media screen and (max-width: 380px) {

View File

@ -30,7 +30,7 @@
padding: 30px 0 0; padding: 30px 0 0;
background-color: #f1f1f1; background-color: #f1f1f1;
z-index: 1000011; /* needs to appear above #wp-auth-check-bg */ z-index: 1000011; /* needs to appear above #wp-auth-check-bg */
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
} }
@media screen and (max-width: 380px) { @media screen and (max-width: 380px) {

View File

@ -70,7 +70,7 @@ body {
color: #82878c; color: #82878c;
background: #fff; background: #fff;
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0, 0, 0, .05); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
/* Clearfix */ /* Clearfix */
overflow: auto; overflow: auto;
zoom: 1; zoom: 1;
@ -216,7 +216,7 @@ p.wp-embed-heading {
.wp-embed-share-dialog-open:focus .dashicons, .wp-embed-share-dialog-open:focus .dashicons,
.wp-embed-share-dialog-close:focus .dashicons { .wp-embed-share-dialog-close:focus .dashicons {
box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8); box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
border-radius: 100%; border-radius: 100%;
} }

View File

@ -4,7 +4,7 @@
font-size: 13px; font-size: 13px;
background: #fff; background: #fff;
border: 1px solid #ddd; border: 1px solid #ddd;
box-shadow: 0 3px 6px rgba(0,0,0,0.075); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
} }
.wp-pointer-content h3 { .wp-pointer-content h3 {

View File

@ -4,7 +4,7 @@
font-size: 13px; font-size: 13px;
background: #fff; background: #fff;
border: 1px solid #ddd; border: 1px solid #ddd;
box-shadow: 0 3px 6px rgba(0,0,0,0.075); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
} }
.wp-pointer-content h3 { .wp-pointer-content h3 {

View File

@ -3092,8 +3092,8 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
margin: 2em auto; margin: 2em auto;
padding: 1em 2em; padding: 1em 2em;
max-width: 700px; max-width: 700px;
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13); -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
box-shadow: 0 1px 3px rgba(0,0,0,0.13); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
} }
h1 { h1 {
border-bottom: 1px solid #dadada; border-bottom: 1px solid #dadada;
@ -3130,10 +3130,10 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
color: #124964; color: #124964;
-webkit-box-shadow: -webkit-box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
box-shadow: box-shadow:
0 0 0 1px #5b9dd9, 0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8); 0 0 2px 1px rgba(30, 140, 190, 0.8);
outline: none; outline: none;
} }
.button { .button {
@ -3174,18 +3174,18 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
color: #23282d; color: #23282d;
} }
.button:focus { .button:focus {
border-color: #5b9dd9; border-color: #5b9dd9;
-webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); -webkit-box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
outline: none; outline: none;
} }
.button:active { .button:active {
background: #eee; background: #eee;
border-color: #999; border-color: #999;
-webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
-webkit-transform: translateY(1px); -webkit-transform: translateY(1px);
-ms-transform: translateY(1px); -ms-transform: translateY(1px);
transform: translateY(1px); transform: translateY(1px);

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.2-alpha-44790'; $wp_version = '5.2-alpha-44791';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.