Accessibility: Improve and modernize user interface controls: Make the secondary buttons border blue.
Props drw158, youknowriad, kjellr, melchoyce, talldanwp, audrasjb. See #34904. Built from https://develop.svn.wordpress.org/trunk@46344 git-svn-id: http://core.svn.wordpress.org/trunk@46143 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7da7edbc57
commit
8ef586a897
|
@ -23,10 +23,11 @@ a {
|
|||
}
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: $link-focus;
|
||||
}
|
||||
|
||||
|
@ -73,6 +74,23 @@ textarea:focus {
|
|||
/* Core UI */
|
||||
|
||||
.wp-core-ui {
|
||||
|
||||
.button,
|
||||
.button-secondary {
|
||||
color: $button-color;
|
||||
border-color: $button-color;
|
||||
}
|
||||
|
||||
.button.hover,
|
||||
.button:hover,
|
||||
.button-secondary:hover,
|
||||
.button.focus,
|
||||
.button:focus,
|
||||
.button-secondary:focus {
|
||||
border-color: darken( $button-color, 5% );
|
||||
color: darken( $button-color, 5% );
|
||||
}
|
||||
|
||||
.button.focus,
|
||||
.button:focus,
|
||||
.button-secondary:focus {
|
||||
|
@ -85,6 +103,10 @@ textarea:focus {
|
|||
@include button( $button-color );
|
||||
}
|
||||
|
||||
.button-group > .button.active {
|
||||
border-color: $button-color;
|
||||
}
|
||||
|
||||
.wp-ui-primary {
|
||||
color: $text-color;
|
||||
background-color: $base-color;
|
||||
|
|
|
@ -16,10 +16,11 @@ a:hover, a:active, a:focus {
|
|||
color: #0096dd;
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: #0096dd;
|
||||
}
|
||||
|
||||
|
@ -61,6 +62,22 @@ textarea:focus {
|
|||
}
|
||||
|
||||
/* Core UI */
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #e1a948;
|
||||
border-color: #e1a948;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #dd9f32;
|
||||
color: #dd9f32;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
|
@ -97,6 +114,10 @@ textarea:focus {
|
|||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #e1a948;
|
||||
}
|
||||
|
||||
.wp-core-ui .wp-ui-primary {
|
||||
color: #fff;
|
||||
background-color: #52accc;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,10 +16,11 @@ a:hover, a:active, a:focus {
|
|||
color: #0096dd;
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: #0096dd;
|
||||
}
|
||||
|
||||
|
@ -61,6 +62,22 @@ textarea:focus {
|
|||
}
|
||||
|
||||
/* Core UI */
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #e1a948;
|
||||
border-color: #e1a948;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #dd9f32;
|
||||
color: #dd9f32;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
|
@ -97,6 +114,10 @@ textarea:focus {
|
|||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #e1a948;
|
||||
}
|
||||
|
||||
.wp-core-ui .wp-ui-primary {
|
||||
color: #fff;
|
||||
background-color: #52accc;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,10 +16,11 @@ a:hover, a:active, a:focus {
|
|||
color: #0096dd;
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: #0096dd;
|
||||
}
|
||||
|
||||
|
@ -61,6 +62,22 @@ textarea:focus {
|
|||
}
|
||||
|
||||
/* Core UI */
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #c7a589;
|
||||
border-color: #c7a589;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #bf9878;
|
||||
color: #bf9878;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
|
@ -97,6 +114,10 @@ textarea:focus {
|
|||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #c7a589;
|
||||
}
|
||||
|
||||
.wp-core-ui .wp-ui-primary {
|
||||
color: #fff;
|
||||
background-color: #59524c;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,10 +16,11 @@ a:hover, a:active, a:focus {
|
|||
color: #0096dd;
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: #0096dd;
|
||||
}
|
||||
|
||||
|
@ -61,6 +62,22 @@ textarea:focus {
|
|||
}
|
||||
|
||||
/* Core UI */
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #c7a589;
|
||||
border-color: #c7a589;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #bf9878;
|
||||
color: #bf9878;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
|
@ -97,6 +114,10 @@ textarea:focus {
|
|||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #c7a589;
|
||||
}
|
||||
|
||||
.wp-core-ui .wp-ui-primary {
|
||||
color: #fff;
|
||||
background-color: #59524c;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,10 +16,11 @@ a:hover, a:active, a:focus {
|
|||
color: #0096dd;
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: #0096dd;
|
||||
}
|
||||
|
||||
|
@ -61,6 +62,22 @@ textarea:focus {
|
|||
}
|
||||
|
||||
/* Core UI */
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #a3b745;
|
||||
border-color: #a3b745;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #93a43e;
|
||||
color: #93a43e;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
|
@ -97,6 +114,10 @@ textarea:focus {
|
|||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #a3b745;
|
||||
}
|
||||
|
||||
.wp-core-ui .wp-ui-primary {
|
||||
color: #fff;
|
||||
background-color: #523f6d;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,10 +16,11 @@ a:hover, a:active, a:focus {
|
|||
color: #0096dd;
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: #0096dd;
|
||||
}
|
||||
|
||||
|
@ -61,6 +62,22 @@ textarea:focus {
|
|||
}
|
||||
|
||||
/* Core UI */
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #a3b745;
|
||||
border-color: #a3b745;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #93a43e;
|
||||
color: #93a43e;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
|
@ -97,6 +114,10 @@ textarea:focus {
|
|||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #a3b745;
|
||||
}
|
||||
|
||||
.wp-core-ui .wp-ui-primary {
|
||||
color: #fff;
|
||||
background-color: #523f6d;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,10 +16,11 @@ a:hover, a:active, a:focus {
|
|||
color: #0096dd;
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: #0096dd;
|
||||
}
|
||||
|
||||
|
@ -61,6 +62,22 @@ textarea:focus {
|
|||
}
|
||||
|
||||
/* Core UI */
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #04a4cc;
|
||||
border-color: #04a4cc;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #0490b3;
|
||||
color: #0490b3;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
|
@ -97,6 +114,10 @@ textarea:focus {
|
|||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #04a4cc;
|
||||
}
|
||||
|
||||
.wp-core-ui .wp-ui-primary {
|
||||
color: #333;
|
||||
background-color: #e5e5e5;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,10 +16,11 @@ a:hover, a:active, a:focus {
|
|||
color: #0096dd;
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: #0096dd;
|
||||
}
|
||||
|
||||
|
@ -61,6 +62,22 @@ textarea:focus {
|
|||
}
|
||||
|
||||
/* Core UI */
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #04a4cc;
|
||||
border-color: #04a4cc;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #0490b3;
|
||||
color: #0490b3;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
|
@ -97,6 +114,10 @@ textarea:focus {
|
|||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #04a4cc;
|
||||
}
|
||||
|
||||
.wp-core-ui .wp-ui-primary {
|
||||
color: #333;
|
||||
background-color: #e5e5e5;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,10 +16,11 @@ a:hover, a:active, a:focus {
|
|||
color: #0096dd;
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: #0096dd;
|
||||
}
|
||||
|
||||
|
@ -61,6 +62,22 @@ textarea:focus {
|
|||
}
|
||||
|
||||
/* Core UI */
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #e14d43;
|
||||
border-color: #e14d43;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #dd382d;
|
||||
color: #dd382d;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
|
@ -97,6 +114,10 @@ textarea:focus {
|
|||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #e14d43;
|
||||
}
|
||||
|
||||
.wp-core-ui .wp-ui-primary {
|
||||
color: #fff;
|
||||
background-color: #363b3f;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,10 +16,11 @@ a:hover, a:active, a:focus {
|
|||
color: #0096dd;
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: #0096dd;
|
||||
}
|
||||
|
||||
|
@ -61,6 +62,22 @@ textarea:focus {
|
|||
}
|
||||
|
||||
/* Core UI */
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #e14d43;
|
||||
border-color: #e14d43;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #dd382d;
|
||||
color: #dd382d;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
|
@ -97,6 +114,10 @@ textarea:focus {
|
|||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #e14d43;
|
||||
}
|
||||
|
||||
.wp-core-ui .wp-ui-primary {
|
||||
color: #fff;
|
||||
background-color: #363b3f;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,10 +16,11 @@ a:hover, a:active, a:focus {
|
|||
color: #0096dd;
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: #0096dd;
|
||||
}
|
||||
|
||||
|
@ -61,6 +62,22 @@ textarea:focus {
|
|||
}
|
||||
|
||||
/* Core UI */
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #9ebaa0;
|
||||
border-color: #9ebaa0;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #8faf91;
|
||||
color: #8faf91;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
|
@ -97,6 +114,10 @@ textarea:focus {
|
|||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #9ebaa0;
|
||||
}
|
||||
|
||||
.wp-core-ui .wp-ui-primary {
|
||||
color: #fff;
|
||||
background-color: #738e96;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,10 +16,11 @@ a:hover, a:active, a:focus {
|
|||
color: #0096dd;
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: #0096dd;
|
||||
}
|
||||
|
||||
|
@ -61,6 +62,22 @@ textarea:focus {
|
|||
}
|
||||
|
||||
/* Core UI */
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #9ebaa0;
|
||||
border-color: #9ebaa0;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #8faf91;
|
||||
color: #8faf91;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
|
@ -97,6 +114,10 @@ textarea:focus {
|
|||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #9ebaa0;
|
||||
}
|
||||
|
||||
.wp-core-ui .wp-ui-primary {
|
||||
color: #fff;
|
||||
background-color: #738e96;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,10 +16,11 @@ a:hover, a:active, a:focus {
|
|||
color: #0096dd;
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: #0096dd;
|
||||
}
|
||||
|
||||
|
@ -61,6 +62,22 @@ textarea:focus {
|
|||
}
|
||||
|
||||
/* Core UI */
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #dd823b;
|
||||
border-color: #dd823b;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #d97426;
|
||||
color: #d97426;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
|
@ -97,6 +114,10 @@ textarea:focus {
|
|||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #dd823b;
|
||||
}
|
||||
|
||||
.wp-core-ui .wp-ui-primary {
|
||||
color: #fff;
|
||||
background-color: #cf4944;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,10 +16,11 @@ a:hover, a:active, a:focus {
|
|||
color: #0096dd;
|
||||
}
|
||||
|
||||
#media-upload a.del-link:hover,
|
||||
div.dashboard-widget-submit input:hover,
|
||||
.subsubsub a:hover,
|
||||
.subsubsub a.current:hover {
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
color: #0096dd;
|
||||
}
|
||||
|
||||
|
@ -61,6 +62,22 @@ textarea:focus {
|
|||
}
|
||||
|
||||
/* Core UI */
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #dd823b;
|
||||
border-color: #dd823b;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #d97426;
|
||||
color: #d97426;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
|
@ -97,6 +114,10 @@ textarea:focus {
|
|||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #dd823b;
|
||||
}
|
||||
|
||||
.wp-core-ui .wp-ui-primary {
|
||||
color: #fff;
|
||||
background-color: #cf4944;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -617,13 +617,14 @@ code {
|
|||
position: relative;
|
||||
top: -3px;
|
||||
text-decoration: none;
|
||||
border: 1px solid #7e8993;
|
||||
border: 1px solid #0071a1;
|
||||
border-radius: 2px;
|
||||
text-shadow: none;
|
||||
font-weight: 600;
|
||||
font-size: 13px;
|
||||
line-height: normal; /* IE8-IE11 need this for buttons */
|
||||
color: #555; /* use the standard color used for buttons */
|
||||
color: #0071a1; /* use the standard color used for buttons */
|
||||
background: #f3f5f6;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
@ -633,9 +634,9 @@ code {
|
|||
|
||||
.wrap .add-new-h2:hover, /* deprecated */
|
||||
.wrap .page-title-action:hover {
|
||||
background: #f3f5f6;
|
||||
border-color: #7e8993;
|
||||
color: #007cba;
|
||||
background: #f1f1f1;
|
||||
border-color: #016087;
|
||||
color: #016087;
|
||||
}
|
||||
|
||||
/* lower specificity: color needs to be overridden by :hover and :active */
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -617,13 +617,14 @@ code {
|
|||
position: relative;
|
||||
top: -3px;
|
||||
text-decoration: none;
|
||||
border: 1px solid #7e8993;
|
||||
border: 1px solid #0071a1;
|
||||
border-radius: 2px;
|
||||
text-shadow: none;
|
||||
font-weight: 600;
|
||||
font-size: 13px;
|
||||
line-height: normal; /* IE8-IE11 need this for buttons */
|
||||
color: #555; /* use the standard color used for buttons */
|
||||
color: #0071a1; /* use the standard color used for buttons */
|
||||
background: #f3f5f6;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
@ -633,9 +634,9 @@ code {
|
|||
|
||||
.wrap .add-new-h2:hover, /* deprecated */
|
||||
.wrap .page-title-action:hover {
|
||||
background: #f3f5f6;
|
||||
border-color: #7e8993;
|
||||
color: #007cba;
|
||||
background: #f1f1f1;
|
||||
border-color: #016087;
|
||||
color: #016087;
|
||||
}
|
||||
|
||||
/* lower specificity: color needs to be overridden by :hover and :active */
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -448,8 +448,7 @@ form#tags-filter {
|
|||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
#post-body .misc-pub-revisions:before {
|
||||
color: #82878c;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -448,8 +448,7 @@ form#tags-filter {
|
|||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
span.wp-media-buttons-icon:before {
|
||||
#post-body .misc-pub-revisions:before {
|
||||
color: #82878c;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -931,7 +931,6 @@ border color while dragging a file over the uploader drop area */
|
|||
line-height: 2;
|
||||
margin: 0 0 8px 8px;
|
||||
padding: 0 10px;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.imgedit-menu .button:before {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -931,7 +931,6 @@ border color while dragging a file over the uploader drop area */
|
|||
line-height: 2;
|
||||
margin: 0 8px 8px 0;
|
||||
padding: 0 10px;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.imgedit-menu .button:before {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -123,9 +123,9 @@ TABLE OF CONTENTS:
|
|||
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #555;
|
||||
border-color: #7e8993;
|
||||
background: #f1f1f1;
|
||||
color: #0071a1;
|
||||
border-color: #0071a1;
|
||||
background: #f3f5f6;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
|
@ -139,9 +139,9 @@ TABLE OF CONTENTS:
|
|||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
background: #f3f5f6;
|
||||
border-color: #7e8993;
|
||||
color: #007cba;
|
||||
background: #f1f1f1;
|
||||
border-color: #016087;
|
||||
color: #016087;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
|
@ -157,15 +157,15 @@ TABLE OF CONTENTS:
|
|||
.wp-core-ui .button.active:hover,
|
||||
.wp-core-ui .button:active,
|
||||
.wp-core-ui .button-secondary:active {
|
||||
background: #eee;
|
||||
border-color: #999;
|
||||
background: #f3f5f6;
|
||||
border-color: #7e8993;
|
||||
transform: translateY(1px);
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.active:focus {
|
||||
border-color: #999;
|
||||
box-shadow: 0 0 0 1px #999;
|
||||
border-color: #7e8993;
|
||||
box-shadow: 0 0 0 1px #7e8993;
|
||||
}
|
||||
|
||||
.wp-core-ui .button[disabled],
|
||||
|
@ -319,6 +319,7 @@ TABLE OF CONTENTS:
|
|||
.wp-core-ui .button-group > .button.active {
|
||||
background-color: #e2e4e7;
|
||||
box-shadow: inset 0 1px 0 0 #999;
|
||||
border-color: #016087;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button:active,
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -123,9 +123,9 @@ TABLE OF CONTENTS:
|
|||
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #555;
|
||||
border-color: #7e8993;
|
||||
background: #f1f1f1;
|
||||
color: #0071a1;
|
||||
border-color: #0071a1;
|
||||
background: #f3f5f6;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
|
@ -139,9 +139,9 @@ TABLE OF CONTENTS:
|
|||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
background: #f3f5f6;
|
||||
border-color: #7e8993;
|
||||
color: #007cba;
|
||||
background: #f1f1f1;
|
||||
border-color: #016087;
|
||||
color: #016087;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
|
@ -157,15 +157,15 @@ TABLE OF CONTENTS:
|
|||
.wp-core-ui .button.active:hover,
|
||||
.wp-core-ui .button:active,
|
||||
.wp-core-ui .button-secondary:active {
|
||||
background: #eee;
|
||||
border-color: #999;
|
||||
background: #f3f5f6;
|
||||
border-color: #7e8993;
|
||||
transform: translateY(1px);
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.active:focus {
|
||||
border-color: #999;
|
||||
box-shadow: 0 0 0 1px #999;
|
||||
border-color: #7e8993;
|
||||
box-shadow: 0 0 0 1px #7e8993;
|
||||
}
|
||||
|
||||
.wp-core-ui .button[disabled],
|
||||
|
@ -319,6 +319,7 @@ TABLE OF CONTENTS:
|
|||
.wp-core-ui .button-group > .button.active {
|
||||
background-color: #e2e4e7;
|
||||
box-shadow: inset 0 1px 0 0 #999;
|
||||
border-color: #016087;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button:active,
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.3-beta1-46343';
|
||||
$wp_version = '5.3-beta1-46344';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue