Changeset 27534
- Timestamp:
- 03/14/2014 12:33:24 PM (10 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r27532 r27534 344 344 $version = 'ver=' . $GLOBALS['wp_version']; 345 345 $dashicons = includes_url( "css/dashicons$suffix.css?$version" ); 346 346 $mediaelement = includes_url( "js/mediaelement/mediaelementplayer.min.css?$version" ); 347 $wpmediaelement = includes_url( "js/mediaelement/wp-mediaelement.css?$version" ); 348 347 349 // WordPress default stylesheet and dashicons 348 $mce_css = array( $dashicons, self::$baseurl . '/skins/wordpress/wp-content.css' ); 350 $mce_css = array( 351 $dashicons, 352 $mediaelement, 353 $wpmediaelement, 354 self::$baseurl . '/skins/wordpress/wp-content.css' 355 ); 349 356 350 357 // load editor_style.css if the current theme supports it -
trunk/src/wp-includes/js/mediaelement/wp-mediaelement.css
r27489 r27534 1 1 .mejs-container, .mejs-embed, .mejs-embed body { 2 background: # 464646;2 background: #000; 3 3 } 4 4 -
trunk/src/wp-includes/js/tinymce/skins/wordpress/wp-content.css
r27530 r27534 204 204 } 205 205 206 audio, 207 video, 208 embed { 209 display: -moz-inline-stack; 210 display: inline-block; 211 max-width: 100%; 212 } 206 213 207 214 /**
Note: See TracChangeset
for help on using the changeset viewer.