Ticket #24326: 24326.1.patch
| File 24326.1.patch, 4.2 KB (added by , 13 years ago) |
|---|
-
wp-admin/css/wp-admin-rtl.css
23 23 11.1 - Custom Fields 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 29 29 14.0 - Media Screen … … 1045 1045 } 1046 1046 1047 1047 /*------------------------------------------------------------------------------ 1048 11.4 - Post format selection1048 11.4 - Post formats 1049 1049 ------------------------------------------------------------------------------*/ 1050 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 } 1051 1056 1057 .wp-format-media-holder { 1058 float: right; 1059 } 1052 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 } 1091 1053 1092 /*------------------------------------------------------------------------------ 1054 1093 12.0 - Categories 1055 1094 ------------------------------------------------------------------------------*/ -
wp-admin/css/wp-admin.css
4046 4046 border: 1px dashed #dfdfdf; 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 4052 4052 .wp-format-media-holder:hover { … … 4055 4055 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 4061 4061 .wp-format-media-holder div { … … 4069 4069 right: 10px; 4070 4070 bottom: 10px; 4071 4071 border: 1px dashed #fff; 4072 display: block;4072 display: block; 4073 4073 } 4074 4074 4075 4075 #poststuff .wp-format-media-holder.drag-over div h3 { … … 4087 4087 font-weight: 200; 4088 4088 color: #fff; 4089 4089 padding: 0; 4090 text-align: center;4090 text-align: center; 4091 4091 font-family: sans-serif; 4092 4092 } 4093 4093 … … 4220 4220 border-style: solid; 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; 4226 4226 overflow: hidden; -
wp-admin/includes/post-formats.php
67 67 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 83 83 <div class="field wp-format-video">