Changeset 37001
- Timestamp:
- 03/16/2016 02:03:21 AM (9 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r36991 r37001 1045 1045 'Edit ' => __( 'Edit' ), // Tooltip for the 'edit' button in the image toolbar 1046 1046 'Paste URL or type to search' => __( 'Paste URL or type to search' ), // Placeholder for the inline link dialog 1047 'Link options' => __( 'Link options' ), 1047 1048 1048 1049 // Shortcuts help modal -
trunk/src/wp-includes/css/editor.css
r36991 r37001 485 485 background: #0085ba; 486 486 border-color: #0073aa #006799 #006799; 487 -webkit-box-shadow: 0 1px 0 #006799;488 box-shadow: 0 1px 0 #006799;489 487 -webkit-box-shadow: none; 488 box-shadow: none; 489 color: #fff; 490 490 text-decoration: none; 491 text-shadow: 0 -1px 1px #006799, 492 1px 0 1px #006799, 493 0 1px 1px #006799, 494 -1px 0 1px #006799; 491 text-shadow: none; 495 492 } 496 493 … … 504 501 border-color: #006799; 505 502 color: #fff; 503 -webkit-box-shadow: 0 1px 0 rgba( 0, 0, 0, 0.2 ); 504 box-shadow: 0 1px 0 rgba( 0, 0, 0, 0.2 ); 506 505 } 507 506 508 507 .mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus { 509 -webkit-box-shadow: 0 1px 0 #0073aa, 510 0 0 2px 1px #33b3db; 511 box-shadow: 0 1px 0 #0073aa, 512 0 0 2px 1px #33b3db; 508 -webkit-box-shadow: 0 0 1px 1px #33b3db; 509 box-shadow: 0 0 1px 1px #33b3db; 513 510 } 514 511 … … 518 515 -webkit-box-shadow: inset 0 2px 0 #006799; 519 516 box-shadow: inset 0 2px 0 #006799; 520 vertical-align: top;521 517 } 522 518 -
trunk/src/wp-includes/js/tinymce/plugins/wplink/plugin.js
r36984 r37001 499 499 } ); 500 500 501 // Advanced, more, options?502 501 editor.addButton( 'wp_link_advanced', { 503 tooltip: ' Advanced',502 tooltip: 'Link options', 504 503 icon: 'dashicon dashicons-admin-generic', 505 504 onclick: function() {
Note: See TracChangeset
for help on using the changeset viewer.