Changeset 24258
- Timestamp:
- 05/14/2013 07:01:57 PM (12 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/wp-admin-rtl.css
r24256 r24258 24 24 11.2 - Post Revisions 25 25 11.3 - Featured Images 26 11.4 - Post Format Selection26 11.4 - Post formats 27 27 12.0 - Categories 28 28 13.0 - Tags … … 1046 1046 1047 1047 /*------------------------------------------------------------------------------ 1048 11.4 - Post format selection 1049 ------------------------------------------------------------------------------*/ 1050 1051 1048 11.4 - Post formats 1049 ------------------------------------------------------------------------------*/ 1050 1051 #post-body-content.wp-format-image label, 1052 #post-body-content.wp-format-video label, 1053 #post-body-content.wp-format-audio label { 1054 float: right; 1055 } 1056 1057 .wp-format-media-holder { 1058 float: right; 1059 } 1060 1061 #wp_format_image, 1062 #wp_format_audio, 1063 #wp_format_video { 1064 float: right; 1065 margin-right: 0; 1066 margin-left: 23px; 1067 } 1068 1069 .post-format-options a { 1070 float: right; 1071 margin-right: 0; 1072 margin-left: 10px; 1073 } 1074 1075 #poststuff .post-format-change { 1076 margin: -7px 2px 13px 0; 1077 clear: right; 1078 } 1079 1080 .post-format-change span.icon { 1081 float: right; 1082 margin: 2px 0 0 5px; 1083 } 1084 1085 @media only screen and (max-width: 782px) { 1086 .post-format-options a { 1087 margin-left: 0; 1088 margin-right: 19px; 1089 } 1090 } 1052 1091 1053 1092 /*------------------------------------------------------------------------------ -
trunk/wp-admin/css/wp-admin.css
r24256 r24258 4047 4047 background: #f5f5f5 url(../images/media-button-2x.png) no-repeat 50% 25%; 4048 4048 box-sizing: border-box; 4049 position: relative;4049 position: relative; 4050 4050 } 4051 4051 … … 4056 4056 .wp-format-media-holder.drag-over { 4057 4057 background: rgba( 0, 86, 132, 0.9 ); 4058 border-color: transparent;4058 border-color: transparent; 4059 4059 } 4060 4060 … … 4070 4070 bottom: 10px; 4071 4071 border: 1px dashed #fff; 4072 display: block;4072 display: block; 4073 4073 } 4074 4074 … … 4088 4088 color: #fff; 4089 4089 padding: 0; 4090 text-align: center;4090 text-align: center; 4091 4091 font-family: sans-serif; 4092 4092 } … … 4221 4221 -webkit-border-radius: 3px; 4222 4222 border-radius: 3px; 4223 border-color: # CCC;4223 border-color: #ccc; 4224 4224 margin: 13px 0 10px; 4225 4225 padding: 5px; -
trunk/wp-admin/includes/post-formats.php
r24232 r24258 68 68 <div class="field wp-format-link"> 69 69 <label for="wp_format_link_url"><?php _e( 'Link URL' ); ?></label> 70 <input type="text" id="wp_format_link_url" name="_format_link_url" value="<?php echo esc_url( $format_meta['link_url'] ); ?>" class="widefat " />70 <input type="text" id="wp_format_link_url" name="_format_link_url" value="<?php echo esc_url( $format_meta['link_url'] ); ?>" class="widefat code" /> 71 71 </div> 72 72 73 73 <div class="field wp-format-quote"> 74 74 <label for="wp_format_quote_source_url"><?php _e( 'Quote source link' ); ?></label> 75 <input type="text" id="wp_format_quote_source_url" name="_format_quote_source_url" value="<?php echo esc_url( $format_meta['quote_source_url'] ); ?>" class="widefat " />75 <input type="text" id="wp_format_quote_source_url" name="_format_quote_source_url" value="<?php echo esc_url( $format_meta['quote_source_url'] ); ?>" class="widefat code" /> 76 76 </div> 77 77 78 78 <div class="field wp-format-image"> 79 79 <label for="wp_format_image_url"><?php _e( 'Image click-through link' ); ?></label> 80 <input type="text" id="wp_format_image_url" name="_format_url" value="<?php echo esc_url( $format_meta['url'] ); ?>" class="widefat " />80 <input type="text" id="wp_format_image_url" name="_format_url" value="<?php echo esc_url( $format_meta['url'] ); ?>" class="widefat code" /> 81 81 </div> 82 82
Note: See TracChangeset
for help on using the changeset viewer.