Changeset 26592
- Timestamp:
- 12/03/2013 09:13:14 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r26268 r26592 83 83 dest: BUILD_DIR, 84 84 ext: '.css', 85 src: ['wp-admin/css/color -schemes/*/colors.scss'],85 src: ['wp-admin/css/colors/*/colors.scss'], 86 86 options: { 87 87 outputStyle: 'expanded' … … 119 119 ext: '.min.css', 120 120 src: [ 121 'wp-admin/css/color -schemes/**/*.css'121 'wp-admin/css/colors/**/*.css' 122 122 ] 123 123 } … … 320 320 }, 321 321 colors: { 322 files: [SOURCE_DIR + 'wp-admin/css/color -schemes/**'],322 files: [SOURCE_DIR + 'wp-admin/css/colors/**'], 323 323 tasks: ['sass:colors'] 324 324 }, -
trunk/src/wp-admin/css/colors/_admin.scss
r26551 r26592 411 411 } 412 412 413 .theme-overlay .theme-header .close:hover, 414 .theme-overlay .theme-header .right:hover, 415 .theme-overlay .theme-header .left:hover { 416 background: $highlight-color; 417 } 418 413 419 /* jQuery UI Slider */ 414 420 -
trunk/src/wp-admin/css/wp-admin.css
r26584 r26592 6699 6699 right: 0; 6700 6700 height: 48px; 6701 border-bottom: 1px solid # eee;6701 border-bottom: 1px solid #ddd; 6702 6702 } 6703 6703 … … 6708 6708 text-align: center; 6709 6709 float: right; 6710 border-left: 1px solid #eee; 6711 } 6712 6713 .theme-overlay .theme-header .close:hover { 6714 background: #333; 6710 border-left: 1px solid #ddd; 6715 6711 } 6716 6712 … … 6720 6716 6721 6717 .theme-overlay .theme-header .close:before { 6722 font: normal 30px/ 48px 'dashicons' !important;6723 color: # bbb;6718 font: normal 30px/50px 'dashicons' !important; 6719 color: #777; 6724 6720 display: inline-block; 6725 6721 content: '\f335'; … … 6731 6727 .theme-overlay .theme-header .left { 6732 6728 cursor: pointer; 6729 color: #777; 6733 6730 height: 48px; 6734 6731 width: 54px; 6735 6732 float: left; 6736 6733 text-align: center; 6737 border-right: 1px solid # eee;6734 border-right: 1px solid #ddd; 6738 6735 -webkit-user-select: none; 6739 6736 -moz-user-select: none; … … 6742 6739 } 6743 6740 6741 .theme-overlay .theme-header .close:hover, 6744 6742 .theme-overlay .theme-header .right:hover, 6745 6743 .theme-overlay .theme-header .left:hover { 6746 background: # 333;6744 background: #0074a2; 6747 6745 color: #fff; 6748 6746 } … … 6759 6757 .theme-overlay .theme-header .right:before, 6760 6758 .theme-overlay .theme-header .left:before { 6761 font: normal 16px/54px 'dashicons' !important;6759 font: normal 20px/50px 'dashicons' !important; 6762 6760 display: inline; 6763 6761 font-weight: 300; … … 6765 6763 6766 6764 .theme-overlay .theme-header .left:before { 6767 content: '\f34 1';6765 content: '\f340'; 6768 6766 } 6769 6767 6770 6768 .theme-overlay .theme-header .right:before { 6771 content: '\f34 5';6769 content: '\f344'; 6772 6770 } 6773 6771 … … 6809 6807 position: absolute; 6810 6808 top: 49px; 6811 bottom: 69px;6809 bottom: 57px; 6812 6810 left: 0; 6813 6811 right: 0; … … 6829 6827 left: 0; 6830 6828 right: 0; 6831 padding: 20px 25px;6829 padding: 10px 25px 5px; 6832 6830 background: #f3f3f3; 6833 6831 z-index: 30; … … 6838 6836 .theme-overlay .theme-actions a { 6839 6837 margin-right: 5px; 6840 margin-bottom: 0;6838 margin-bottom: 5px; 6841 6839 } 6842 6840 … … 6845 6843 position: absolute; 6846 6844 right: 10px; 6847 bottom: 20px;6845 bottom: 5px; 6848 6846 text-decoration: none; 6849 6847 border-color: transparent; … … 7113 7111 body.folded .theme-overlay .theme-wrap, 7114 7112 .theme-overlay .theme-wrap { 7115 top: 45px;7113 top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */ 7116 7114 right: 0; 7117 7115 bottom: 0; … … 7119 7117 padding: 70px 20px 20px; 7120 7118 border: none; 7119 z-index: 999999999; 7120 position: fixed; 7121 7121 } 7122 7122 … … 7152 7152 margin-top: 6px; 7153 7153 margin-right: 0; 7154 } 7155 7156 .theme-overlay .theme-actions .delete-theme { 7157 position: relative; 7158 right: auto; 7159 bottom: auto; 7160 } 7161 7162 .theme-overlay .theme-actions .inactive-theme { 7163 display: inline; 7154 7164 } 7155 7165
Note: See TracChangeset
for help on using the changeset viewer.