TinyMCE, inline link:
- Remove bottom box-shadow from the Apply button so it matches the rest. - Change the tooltip for the cogwheel button to Link options. See #33301. git-svn-id: https://develop.svn.wordpress.org/trunk@37001 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
22e01b6274
commit
69a7d21279
|
@ -1044,6 +1044,7 @@ final class _WP_Editors {
|
||||||
'Remove' => __( 'Remove' ), // Tooltip for the 'remove' button in the image toolbar
|
'Remove' => __( 'Remove' ), // Tooltip for the 'remove' button in the image toolbar
|
||||||
'Edit ' => __( 'Edit' ), // Tooltip for the 'edit' button in the image toolbar
|
'Edit ' => __( 'Edit' ), // Tooltip for the 'edit' button in the image toolbar
|
||||||
'Paste URL or type to search' => __( 'Paste URL or type to search' ), // Placeholder for the inline link dialog
|
'Paste URL or type to search' => __( 'Paste URL or type to search' ), // Placeholder for the inline link dialog
|
||||||
|
'Link options' => __( 'Link options' ),
|
||||||
|
|
||||||
// Shortcuts help modal
|
// Shortcuts help modal
|
||||||
'Keyboard Shortcuts' => __( 'Keyboard Shortcuts' ),
|
'Keyboard Shortcuts' => __( 'Keyboard Shortcuts' ),
|
||||||
|
|
|
@ -484,14 +484,11 @@ div.mce-path {
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
background: #0085ba;
|
background: #0085ba;
|
||||||
border-color: #0073aa #006799 #006799;
|
border-color: #0073aa #006799 #006799;
|
||||||
-webkit-box-shadow: 0 1px 0 #006799;
|
-webkit-box-shadow: none;
|
||||||
box-shadow: 0 1px 0 #006799;
|
box-shadow: none;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-shadow: 0 -1px 1px #006799,
|
text-shadow: none;
|
||||||
1px 0 1px #006799,
|
|
||||||
0 1px 1px #006799,
|
|
||||||
-1px 0 1px #006799;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.mce-toolbar .mce-btn-group .mce-btn.mce-primary .mce-ico {
|
.mce-toolbar .mce-btn-group .mce-btn.mce-primary .mce-ico {
|
||||||
|
@ -503,13 +500,13 @@ div.mce-path {
|
||||||
background: #008ec2;
|
background: #008ec2;
|
||||||
border-color: #006799;
|
border-color: #006799;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
-webkit-box-shadow: 0 1px 0 rgba( 0, 0, 0, 0.2 );
|
||||||
|
box-shadow: 0 1px 0 rgba( 0, 0, 0, 0.2 );
|
||||||
}
|
}
|
||||||
|
|
||||||
.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus {
|
.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus {
|
||||||
-webkit-box-shadow: 0 1px 0 #0073aa,
|
-webkit-box-shadow: 0 0 1px 1px #33b3db;
|
||||||
0 0 2px 1px #33b3db;
|
box-shadow: 0 0 1px 1px #33b3db;
|
||||||
box-shadow: 0 1px 0 #0073aa,
|
|
||||||
0 0 2px 1px #33b3db;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.mce-toolbar .mce-btn-group .mce-btn.mce-primary:active {
|
.mce-toolbar .mce-btn-group .mce-btn.mce-primary:active {
|
||||||
|
@ -517,7 +514,6 @@ div.mce-path {
|
||||||
border-color: #006799;
|
border-color: #006799;
|
||||||
-webkit-box-shadow: inset 0 2px 0 #006799;
|
-webkit-box-shadow: inset 0 2px 0 #006799;
|
||||||
box-shadow: inset 0 2px 0 #006799;
|
box-shadow: inset 0 2px 0 #006799;
|
||||||
vertical-align: top;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* mce listbox */
|
/* mce listbox */
|
||||||
|
|
|
@ -498,9 +498,8 @@
|
||||||
cmd: 'unlink'
|
cmd: 'unlink'
|
||||||
} );
|
} );
|
||||||
|
|
||||||
// Advanced, more, options?
|
|
||||||
editor.addButton( 'wp_link_advanced', {
|
editor.addButton( 'wp_link_advanced', {
|
||||||
tooltip: 'Advanced',
|
tooltip: 'Link options',
|
||||||
icon: 'dashicon dashicons-admin-generic',
|
icon: 'dashicon dashicons-admin-generic',
|
||||||
onclick: function() {
|
onclick: function() {
|
||||||
if ( typeof window.wpLink !== 'undefined' ) {
|
if ( typeof window.wpLink !== 'undefined' ) {
|
||||||
|
|
Loading…
Reference in New Issue