Changeset 29623
- Timestamp:
- 08/26/2014 12:54:23 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/common.css
r29619 r29623 2138 2138 font-weight: 600; 2139 2139 line-height: 56px; 2140 position: relative; 2140 2141 top: 0; 2141 2142 right: 0; … … 2378 2379 } 2379 2380 2381 /* @noflip */ 2382 #plugin-information .section { 2383 direction: ltr; 2384 } 2385 2386 /* @noflip */ 2380 2387 #plugin-information .section ul, 2381 2388 #plugin-information .section ol { … … 2405 2412 } 2406 2413 2414 /* @noflip */ 2407 2415 #plugin-information #section-screenshots li p { 2408 2416 font-style: italic; … … 2416 2424 } 2417 2425 2426 /* @noflip */ 2418 2427 #plugin-information .review { 2419 2428 width: 100%; … … 2428 2437 clear: both; 2429 2438 } 2430 2439 /* @noflip */ 2431 2440 #plugin-information .review-title-section h4 { 2432 2441 display: inline-block; … … 2443 2452 } 2444 2453 2454 /* @noflip */ 2445 2455 #plugin-information .reviewer-info .avatar { 2446 2456 float: left; … … 2448 2458 } 2449 2459 2450 #plugin-information .star-rating { 2460 /* @noflip */ 2461 #plugin-information .reviewer-info .star-rating { 2451 2462 float: left; 2452 2463 } 2453 2464 2465 /* @noflip */ 2454 2466 #plugin-information .review-meta { 2455 2467 float: left; … … 2457 2469 } 2458 2470 2471 /* @noflip */ 2459 2472 #plugin-information .review-body { 2460 2473 float: left; … … 2569 2582 body.update-core-php .tb-close-icon, 2570 2583 body.index-php .tb-close-icon { 2584 left: auto; 2571 2585 right: -30px; 2572 2586 color: #eee; -
trunk/src/wp-admin/css/media.css
r29612 r29623 824 824 .edit-attachment-frame .attachment-info .details, 825 825 .edit-attachment-frame .attachment-info .settings { 826 position: relative; /* RTL fix, #WP29352 */ 826 827 overflow: hidden; 827 828 float: none; -
trunk/src/wp-admin/includes/template.php
r29239 r29623 453 453 <div class="inside"> 454 454 <label for="author-url"><?php _e('URL') ?></label> 455 <input type="text" id="author-url" name="newcomment_author_url" size="103" value="" />455 <input type="text" id="author-url" name="newcomment_author_url" class="code" size="103" value="" /> 456 456 </div> 457 457 <div style="clear:both;"></div> -
trunk/src/wp-includes/css/media-views.css
r29617 r29623 1683 1683 padding: 0; 1684 1684 padding-bottom: 16px; 1685 position: relative; /* RTL fix, #WP29352 */ 1685 1686 } 1686 1687 -
trunk/src/wp-includes/js/media-views.js
r29613 r29623 6758 6758 var self = this; 6759 6759 6760 this.$input = $('<input id="embed-url-field" type=" text" />').val( this.model.get('url') );6760 this.$input = $('<input id="embed-url-field" type="url" />').val( this.model.get('url') ); 6761 6761 this.input = this.$input[0]; 6762 6762
Note: See TracChangeset
for help on using the changeset viewer.