Changeset 37174
- Timestamp:
- 04/11/2016 03:11:32 PM (8 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/css/editor.css
r37154 r37174 1784 1784 max-height: 200px; 1785 1785 overflow-y: auto; 1786 } 1787 1788 .wplink-autocomplete li { 1786 padding: 0; 1787 margin: 0; 1788 list-style: none; 1789 position: absolute; 1790 border: 1px solid #5b9dd9; 1791 -webkit-box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 ); 1792 box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 ); 1793 background-color: #fff; 1794 } 1795 1796 .ui-autocomplete.wplink-autocomplete li { 1797 margin-bottom: 0; 1798 padding: 4px 10px; 1789 1799 clear: both; 1790 1800 white-space: normal; 1801 text-align: left; 1802 } 1803 1804 .ui-autocomplete.wplink-autocomplete li .wp-editor-float-right { 1805 float: right; 1806 } 1807 1808 .ui-autocomplete.wplink-autocomplete li.ui-state-focus { 1809 background-color: #ddd; 1810 cursor: pointer; 1791 1811 } 1792 1812 -
trunk/src/wp-includes/js/tinymce/plugins/wplink/plugin.js
r37001 r37174 421 421 } ).autocomplete( 'instance' )._renderItem = function( ul, item ) { 422 422 return $( '<li role="option" id="mce-wp-autocomplete-' + item.ID + '">' ) 423 .append( '<span>' + item.title + '</span> <span class=" alignright">' + item.info + '</span>' )423 .append( '<span>' + item.title + '</span> <span class="wp-editor-float-right">' + item.info + '</span>' ) 424 424 .appendTo( ul ); 425 425 };
Note: See TracChangeset
for help on using the changeset viewer.