Changeset 35200
- Timestamp:
- 10/15/2015 04:45:14 PM (9 years ago)
- Location:
- trunk/src/wp-admin/css
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/common.css
r35184 r35200 2801 2801 } 2802 2802 2803 /* @todo: these seem misplaced */2804 .js .meta-box-sortables .postbox:hover .handlediv {2805 margin-right: 0 !important;2806 }2807 2808 2803 /* Metabox collapse arrow indicators */ 2809 2804 .js .sidebar-name .sidebar-name-arrow:before, 2810 2805 .js .meta-box-sortables .postbox .toggle-indicator:before { 2811 position: relative; 2812 left: -1px; /* fix the dashicon horizontal alignment */ 2806 content: "\f142"; 2813 2807 display: inline-block; 2814 2808 font: normal 20px/1 dashicons; 2815 2809 speak: none; 2816 padding: 8px;2817 2810 -webkit-font-smoothing: antialiased; 2818 2811 -moz-osx-font-smoothing: grayscale; … … 2820 2813 } 2821 2814 2815 .js .widgets-holder-wrap.closed .sidebar-name-arrow:before, 2816 .js .meta-box-sortables .postbox.closed .handlediv .toggle-indicator:before { 2817 content: "\f140"; 2818 } 2819 2822 2820 .js .sidebar-name .sidebar-name-arrow:before { 2823 2821 padding: 10px; … … 2834 2832 } 2835 2833 2836 /* Show the arrow only on hover */ 2837 .js .sidebar-name .sidebar-name-arrow:before, 2838 .js .meta-box-sortables .postbox .toggle-indicator:before { 2839 content: "\f142"; 2840 } 2841 2842 .js .widgets-holder-wrap.closed .sidebar-name-arrow:before, 2843 .js .meta-box-sortables .postbox.closed .handlediv .toggle-indicator:before { 2844 content: "\f140"; 2834 .js .postbox .handlediv .toggle-indicator:before { 2835 margin-top: 4px; 2836 width: 20px; 2837 border-radius: 50%; 2838 text-indent: -1px; /* account for the dashicon alignment */ 2839 } 2840 2841 .js .postbox .handlediv:focus { 2842 -webkit-box-shadow: none; 2843 box-shadow: none; 2844 } 2845 2846 .js .postbox .handlediv:focus .toggle-indicator:before { 2847 -webkit-box-shadow: 2848 0 0 0 1px #5b9dd9, 2849 0 0 2px 1px rgba(30, 140, 190, .8); 2850 box-shadow: 2851 0 0 0 1px #5b9dd9, 2852 0 0 2px 1px rgba(30, 140, 190, .8); 2845 2853 } 2846 2854 … … 2975 2983 2976 2984 .widget-top a.widget-action:after { 2977 padding: 12px 12px 11px; 2985 padding: 1px 2px 1px 0px; 2986 margin-top: 10px; 2987 margin-right: 10px; 2988 border-radius: 50%; 2978 2989 } 2979 2990 2980 2991 .widget-top a.widget-action:focus:after { 2981 -webkit-box-shadow: 0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);2982 box-shadow: 0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);2983 } 2984 2985 .nav-menus-php .item-edit:before { 2986 line-height: 2.1;2992 -webkit-box-shadow: 2993 0 0 0 1px #5b9dd9, 2994 0 0 2px 1px rgba(30,140,190,.8); 2995 box-shadow: 2996 0 0 0 1px #5b9dd9, 2997 0 0 2px 1px rgba(30,140,190,.8); 2987 2998 } 2988 2999 -
trunk/src/wp-admin/css/nav-menus.css
r34065 r35200 580 580 .item-type { 581 581 display: inline-block; 582 padding: 12px 1 0px;582 padding: 12px 16px; 583 583 color: #666; 584 584 font-size: 12px; … … 617 617 overflow: hidden; 618 618 white-space: nowrap; 619 } 620 621 .nav-menus-php .item-edit:before { 622 margin-top: 10px; 623 margin-left: 4px; 624 width: 20px; 625 border-radius: 50%; 626 text-indent: -1px; /* account for the dashicon alignment */ 627 } 628 629 .nav-menus-php .item-edit:focus { 630 -webkit-box-shadow: none; 631 box-shadow: none; 632 } 633 634 .nav-menus-php .item-edit:focus:before { 635 -webkit-box-shadow: 636 0 0 0 1px #5b9dd9, 637 0 0 2px 1px rgba(30, 140, 190, .8); 638 box-shadow: 639 0 0 0 1px #5b9dd9, 640 0 0 2px 1px rgba(30, 140, 190, .8); 619 641 } 620 642
Note: See TracChangeset
for help on using the changeset viewer.