Ticket #20828: 20828.4.diff
| File 20828.4.diff, 3.7 KB (added by helenyhou, 12 months ago) |
|---|
-
wp-admin/customize.php
96 96 97 97 <div id="customize-footer-actions" class="wp-full-overlay-footer"> 98 98 <a href="#" class="collapse-sidebar button-secondary" title="<?php esc_attr_e('Collapse Sidebar'); ?>"> 99 <span class="collapse-sidebar-arrow"></span> 99 100 <span class="collapse-sidebar-label"><?php _e('Collapse'); ?></span> 100 <span class="collapse-sidebar-arrow"></span>101 101 </a> 102 102 </div> 103 103 </form> -
wp-admin/css/wp-admin-rtl.dev.css
1591 1591 1592 1592 /* Collapse Button */ 1593 1593 .wp-full-overlay .collapse-sidebar { 1594 right: auto;1595 left: 15px;1594 right: 15px; 1595 left: auto; 1596 1596 } 1597 1597 1598 1598 .wp-full-overlay.collapsed .collapse-sidebar { … … 1601 1601 } 1602 1602 1603 1603 .wp-full-overlay .collapse-sidebar-arrow { 1604 margin-left: 0;1605 1604 margin-right: 2px; 1605 margin-left: 0; 1606 1606 background: transparent url('../../wp-admin/images/arrows.png') no-repeat 0 -108px; 1607 1607 } 1608 1608 … … 1611 1611 } 1612 1612 1613 1613 .wp-full-overlay .collapse-sidebar-label { 1614 text-align: left; 1615 right: auto; 1616 left: 100%; 1617 margin-right: 0; 1618 margin-left: 10px; 1614 right: 100%; 1615 left: auto; 1616 margin-right: 10px; 1617 margin-left: 0; 1619 1618 } 1620 1619 1621 1620 /*------------------------------------------------------------------------------ -
wp-admin/css/wp-admin.dev.css
5354 5354 .wp-full-overlay .collapse-sidebar { 5355 5355 position: absolute; 5356 5356 bottom: 12px; 5357 right: 15px;5357 left: 15px; 5358 5358 z-index: 50; 5359 5359 display: block; 5360 5360 width: 19px; … … 5366 5366 5367 5367 .wp-full-overlay.collapsed .collapse-sidebar { 5368 5368 position: absolute; 5369 left: auto; 5369 5370 right: -35px; 5370 5371 } 5371 5372 5372 5373 .wp-full-overlay .collapse-sidebar-arrow { 5374 position: absolute; 5373 5375 margin-top: 2px; 5374 5376 margin-left: 2px; 5375 5377 display: block; … … 5383 5385 } 5384 5386 5385 5387 .wp-full-overlay .collapse-sidebar-label { 5386 text-align: right;5387 5388 position: absolute; 5388 right: 100%;5389 left: 100%; 5389 5390 color: #aaa; 5390 5391 line-height: 20px; 5391 margin- right: 10px;5392 margin-left: 10px; 5392 5393 } 5393 5394 5394 5395 .wp-full-overlay.collapsed .collapse-sidebar-label { -
wp-admin/css/customize-controls.dev.css
12 12 margin: 0; 13 13 } 14 14 15 .customize-section.open { 16 border-top-color: #808080; 17 } 18 15 19 .customize-section:last-child { 16 20 box-shadow: 0 1px 0 0px #fff; 17 21 } … … 64 68 } 65 69 66 70 .control-section.open .customize-section-title { 71 color: #fff; 72 text-shadow: 0 -1px 0 #333; 73 background-color: #808080; 74 background-image: -webkit-linear-gradient( top, #808080, #6d6d6d ); 75 background-image: -moz-linear-gradient( top, #808080, #6d6d6d ); 76 background-image: -ms-linear-gradient( top, #808080, #6d6d6d ); 77 background-image: -o-linear-gradient( top, #808080, #6d6d6d ); 78 background-image: linear-gradient( top, #808080, #6d6d6d ); 79 } 80 81 .control-section.open .customize-section-title { 67 82 border-bottom: 1px solid #e5e5e5; 68 83 } 69 84 … … 73 88 74 89 .customize-section.open .customize-section-content { 75 90 display: block; 76 background: #f ff;91 background: #fdfdfd; 77 92 } 78 93 79 94 .customize-section-title:after { … … 417 432 padding-bottom: 4px; 418 433 419 434 color: #777; 420 background: #f ff;435 background: #fdfdfd; 421 436 border-color: #dfdfdf; 422 437 -webkit-border-radius: 3px 3px 0 0; 423 438 border-radius: 3px 3px 0 0 ;
