mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
TinyMCE, inline link: add styling for the dialog and UI Autocomplete to Press This.
See #33301. Built from https://develop.svn.wordpress.org/trunk@36849 git-svn-id: http://core.svn.wordpress.org/trunk@36816 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9b2d44e5a1
commit
3bb9185496
@ -2170,3 +2170,40 @@ html {
|
||||
background: #fff;
|
||||
border-color: #d8d8d8;
|
||||
}
|
||||
|
||||
/* Inline link dialog */
|
||||
.wp-link-input input {
|
||||
border: 1px solid #ddd;
|
||||
-webkit-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;
|
||||
color: #32373c;
|
||||
outline: none;
|
||||
-webkit-transition: 0.05s border-color ease-in-out;
|
||||
transition: 0.05s border-color ease-in-out;
|
||||
}
|
||||
|
||||
/* UI Autocomplete (for inline link and wpLink) */
|
||||
.ui-autocomplete {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
position: absolute;
|
||||
z-index: 10000;
|
||||
border: 1px solid #5b9dd9;
|
||||
-webkit-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;
|
||||
}
|
||||
|
||||
.ui-autocomplete li {
|
||||
margin-bottom: 0;
|
||||
padding: 4px 10px;
|
||||
white-space: nowrap;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.ui-autocomplete li.ui-state-focus {
|
||||
background-color: #ddd;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
2
wp-admin/css/press-this-rtl.min.css
vendored
2
wp-admin/css/press-this-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@ -2170,3 +2170,40 @@ html {
|
||||
background: #fff;
|
||||
border-color: #d8d8d8;
|
||||
}
|
||||
|
||||
/* Inline link dialog */
|
||||
.wp-link-input input {
|
||||
border: 1px solid #ddd;
|
||||
-webkit-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;
|
||||
color: #32373c;
|
||||
outline: none;
|
||||
-webkit-transition: 0.05s border-color ease-in-out;
|
||||
transition: 0.05s border-color ease-in-out;
|
||||
}
|
||||
|
||||
/* UI Autocomplete (for inline link and wpLink) */
|
||||
.ui-autocomplete {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
position: absolute;
|
||||
z-index: 10000;
|
||||
border: 1px solid #5b9dd9;
|
||||
-webkit-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;
|
||||
}
|
||||
|
||||
.ui-autocomplete li {
|
||||
margin-bottom: 0;
|
||||
padding: 4px 10px;
|
||||
white-space: nowrap;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.ui-autocomplete li.ui-state-focus {
|
||||
background-color: #ddd;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
2
wp-admin/css/press-this.min.css
vendored
2
wp-admin/css/press-this.min.css
vendored
File diff suppressed because one or more lines are too long
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.5-beta2-36848';
|
||||
$wp_version = '4.5-beta2-36849';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user