Ticket #20828: 20828.5.diff
| File 20828.5.diff, 4.6 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: 0; 1595 left: auto; 1596 margin-right: 15px; 1596 1597 } 1597 1598 1598 1599 .wp-full-overlay.collapsed .collapse-sidebar { 1599 right: auto; 1600 left: -45px; 1600 right: 100%; 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
5353 5353 .wp-full-overlay .collapse-sidebar { 5354 5354 position: absolute; 5355 5355 bottom: 12px; 5356 right: 15px;5356 left: 0; 5357 5357 z-index: 50; 5358 5358 display: block; 5359 5359 width: 19px; 5360 5360 height: 19px; 5361 margin-left: 15px; 5361 5362 padding: 0; 5362 5363 border-radius: 50%; 5363 5364 text-decoration: none; … … 5365 5366 5366 5367 .wp-full-overlay.collapsed .collapse-sidebar { 5367 5368 position: absolute; 5368 right: -35px;5369 left: 100%; 5369 5370 } 5370 5371 5371 5372 .wp-full-overlay .collapse-sidebar-arrow { 5373 position: absolute; 5372 5374 margin-top: 2px; 5373 5375 margin-left: 2px; 5374 5376 display: block; … … 5382 5384 } 5383 5385 5384 5386 .wp-full-overlay .collapse-sidebar-label { 5385 text-align: right;5386 5387 position: absolute; 5387 right: 100%;5388 color: # aaa;5388 left: 100%; 5389 color: #808080; 5389 5390 line-height: 20px; 5390 margin- right: 10px;5391 margin-left: 10px; 5391 5392 } 5392 5393 5393 5394 .wp-full-overlay.collapsed .collapse-sidebar-label { … … 5395 5396 } 5396 5397 5397 5398 .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label { 5398 color: # 999;5399 color: #666; 5399 5400 } 5400 5401 5401 5402 /* Animations */ -
wp-admin/css/customize-controls.dev.css
53 53 background-image: linear-gradient( top, #f5f5f5, #eee ); 54 54 } 55 55 56 .control-section .customize-section-title:hover { 57 color: #222; 58 background-color: #e6e6e6; 59 background-image: -webkit-linear-gradient( top, #e9e9e9, #e4e4e4 ); 60 background-image: -moz-linear-gradient( top, #e9e9e9, #e4e4e4 ); 61 background-image: -ms-linear-gradient( top, #e9e9e9, #e4e4e4 ); 62 background-image: -o-linear-gradient( top, #e9e9e9, #e4e4e4 ); 63 background-image: linear-gradient( top, #e9e9e9, #e4e4e4 ); 64 } 65 56 .control-section .customize-section-title:hover, 66 57 .control-section.open .customize-section-title { 67 border-bottom: 1px solid #e5e5e5; 58 color: #fff; 59 text-shadow: 0 -1px 0 #333; 60 background-color: #808080; 61 background-image: -webkit-linear-gradient( top, #808080, #6d6d6d ); 62 background-image: -moz-linear-gradient( top, #808080, #6d6d6d ); 63 background-image: -ms-linear-gradient( top, #808080, #6d6d6d ); 64 background-image: -o-linear-gradient( top, #808080, #6d6d6d ); 65 background-image: linear-gradient( top, #808080, #6d6d6d ); 68 66 } 69 67 70 .control-section.open .customize-section-title:hover {71 border-bottom: 1px solid #dfdfdf;72 }73 74 68 .customize-section.open .customize-section-content { 75 69 display: block; 76 background: #f ff;70 background: #fdfdfd; 77 71 } 78 72 79 73 .customize-section-title:after { … … 293 287 .customize-control .dropdown-status { 294 288 display: none; 295 289 max-width: 112px; 296 color: # 999;290 color: #777; 297 291 } 298 292 299 293 /* … … 412 406 padding-bottom: 4px; 413 407 414 408 color: #777; 415 background: #f ff;409 background: #fdfdfd; 416 410 border-color: #dfdfdf; 417 411 -webkit-border-radius: 3px 3px 0 0; 418 412 border-radius: 3px 3px 0 0 ;
