Ticket #15864: 15864.internal.linking.patch
File 15864.internal.linking.patch, 2.5 KB (added by , 14 years ago) |
---|
-
wp-includes/js/tinymce/plugins/wplink/css/wplink-rtl.dev.css
1 #wp-link #internal-toggle a { 2 padding-right: 18px; 3 padding-left: 0; 4 } 5 6 #wp-link label span { 7 text-align: left; 8 padding-left: 5px; 9 padding-right: 0; 10 } 11 12 #wp-link .link-search-wrapper span { 13 float: right; 14 } 15 16 #wp-link .link-search-wrapper input[type="text"] { 17 float: right; 18 } 19 20 #wp-link .link-search-wrapper img.waiting { 21 margin: 8px 4px 0 1px; 22 float: right; 23 } 24 25 #wp-link .link-target { 26 margin: 0 87px 0 0; 27 } 28 29 #wp-link .item-info { 30 left: 5px; 31 right: auto; 32 top: 4px; 33 bottom: 0; 34 } 35 36 #wp-link #search-panel { 37 float: right; 38 } 39 40 #wp-link-cancel { 41 float: right; 42 } 43 44 #wp-link-update { 45 float: left; 46 } 47 48 #wp-link .toggle-arrow { 49 background-position: top right; 50 } 51 52 #wp-link .toggle-arrow-active { 53 background-position: bottom right; 54 } -
wp-includes/js/tinymce/plugins/wplink/css/wplink.dev.css
95 95 top: 4px; 96 96 bottom: 0; 97 97 } 98 # search-results {98 #wp-link #search-results { 99 99 display: none; 100 100 } 101 # search-panel {101 #wp-link #search-panel { 102 102 float: left; 103 103 width: 100%; 104 104 } -
wp-includes/script-loader.php
480 480 481 481 $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '.dev' : ''; 482 482 483 $rtl_styles = array( 'wp-admin', 'global', 'colors', 'colors-fresh', 'colors-classic', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'plugin-install', 'nav-menu', 'farbtastic', 'admin-bar' );483 $rtl_styles = array( 'wp-admin', 'global', 'colors', 'colors-fresh', 'colors-classic', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'plugin-install', 'nav-menu', 'farbtastic', 'admin-bar', 'wplink' ); 484 484 // Any rtl stylesheets that don't have a .dev version for ltr 485 485 $no_suffix = array( 'farbtastic' ); 486 486