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:
Andrew Ozz 2016-03-16 02:03:21 +00:00
parent 22e01b6274
commit 69a7d21279
3 changed files with 10 additions and 14 deletions

View File

@ -1044,6 +1044,7 @@ final class _WP_Editors {
'Remove' => __( 'Remove' ), // Tooltip for the 'remove' 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
'Link options' => __( 'Link options' ),
// Shortcuts help modal
'Keyboard Shortcuts' => __( 'Keyboard Shortcuts' ),

View File

@ -484,14 +484,11 @@ div.mce-path {
min-width: 0;
background: #0085ba;
border-color: #0073aa #006799 #006799;
-webkit-box-shadow: 0 1px 0 #006799;
box-shadow: 0 1px 0 #006799;
color: #fff;
-webkit-box-shadow: none;
box-shadow: none;
color: #fff;
text-decoration: none;
text-shadow: 0 -1px 1px #006799,
1px 0 1px #006799,
0 1px 1px #006799,
-1px 0 1px #006799;
text-shadow: none;
}
.mce-toolbar .mce-btn-group .mce-btn.mce-primary .mce-ico {
@ -503,13 +500,13 @@ div.mce-path {
background: #008ec2;
border-color: #006799;
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 {
-webkit-box-shadow: 0 1px 0 #0073aa,
0 0 2px 1px #33b3db;
box-shadow: 0 1px 0 #0073aa,
0 0 2px 1px #33b3db;
-webkit-box-shadow: 0 0 1px 1px #33b3db;
box-shadow: 0 0 1px 1px #33b3db;
}
.mce-toolbar .mce-btn-group .mce-btn.mce-primary:active {
@ -517,7 +514,6 @@ div.mce-path {
border-color: #006799;
-webkit-box-shadow: inset 0 2px 0 #006799;
box-shadow: inset 0 2px 0 #006799;
vertical-align: top;
}
/* mce listbox */

View File

@ -498,9 +498,8 @@
cmd: 'unlink'
} );
// Advanced, more, options?
editor.addButton( 'wp_link_advanced', {
tooltip: 'Advanced',
tooltip: 'Link options',
icon: 'dashicon dashicons-admin-generic',
onclick: function() {
if ( typeof window.wpLink !== 'undefined' ) {