Editor, link checker:
- Add white outline for contrast on darker backgrounds. - Change red colour in toolbar. Props iseulde. Props rockwell15 for the initial patch. See #36638. Built from https://develop.svn.wordpress.org/trunk@37751 git-svn-id: http://core.svn.wordpress.org/trunk@37716 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ddca3c1e01
commit
07cef1ce62
|
@ -1758,11 +1758,7 @@ div.wp-link-preview a {
|
|||
}
|
||||
|
||||
div.wp-link-preview a.wplink-url-error {
|
||||
color: #a00;
|
||||
}
|
||||
|
||||
div.wp-link-preview a.wplink-url-error:hover {
|
||||
color: #f00;
|
||||
color: #dc3232;
|
||||
}
|
||||
|
||||
div.wp-link-input {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1758,11 +1758,7 @@ div.wp-link-preview a {
|
|||
}
|
||||
|
||||
div.wp-link-preview a.wplink-url-error {
|
||||
color: #a00;
|
||||
}
|
||||
|
||||
div.wp-link-preview a.wplink-url-error:hover {
|
||||
color: #f00;
|
||||
color: #dc3232;
|
||||
}
|
||||
|
||||
div.wp-link-input {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -212,6 +212,18 @@ a[data-wplink-url-error]:focus {
|
|||
position: relative;
|
||||
}
|
||||
|
||||
a[data-wplink-url-error]:before {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: -2px;
|
||||
right: -2px;
|
||||
bottom: -2px;
|
||||
left: -2px;
|
||||
outline: 2px dotted #fff;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
/**
|
||||
* WP Views
|
||||
*/
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.6-alpha-37750';
|
||||
$wp_version = '4.6-alpha-37751';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue