Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* Processed with LESS from lib/views/stylesheet.less */ | 1 /* Processed with LESS from lib/views/stylesheet.less */ |
2 @font-family: 'Ubuntu', 'Helvetica Neue', Helvetica, Arial, sans-serif; | 2 @font-family: 'Ubuntu', 'Helvetica Neue', Helvetica, Arial, sans-serif; |
3 @font-family-medium: 'Ubuntu Medium', 'Helvetica Neue', Helvetica, Arial, sans-s erif; | 3 @font-family-medium: 'Ubuntu Medium', 'Helvetica Neue', Helvetica, Arial, sans-s erif; |
4 | 4 |
5 /* Define common colors. */ | 5 /* Define common colors. */ |
6 @label-color: #292929; | 6 @label-color: #292929; |
7 @text-entry-color: #6d6e70; | 7 @text-entry-color: #6d6e70; |
8 @charm-panel-orange: #dd4814; | 8 @charm-panel-orange: #dd4814; |
9 @charm-panel-configure-title-color: #eee7d5; | 9 @charm-panel-configure-title-color: #eee7d5; |
10 @charm-panel-configure-name-color: #8f8f88; | 10 @charm-panel-configure-name-color: #8f8f88; |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
116 display: inline-block; | 116 display: inline-block; |
117 height: 44px; | 117 height: 44px; |
118 margin: 2px 0 0 0; | 118 margin: 2px 0 0 0; |
119 padding: 20px 0 4px; | 119 padding: 20px 0 4px; |
120 &#charm-search-trigger-container { | 120 &#charm-search-trigger-container { |
121 width: @charm-panel-width; | 121 width: @charm-panel-width; |
122 white-space: nowrap; | 122 white-space: nowrap; |
123 border-left: 1px solid transparent; | 123 border-left: 1px solid transparent; |
124 &.active-border { | 124 &.active-border { |
125 border-left-color: darkgray; | 125 border-left-color: darkgray; |
126 -moz-box-shadow: inset 1px 0 0 lightgray; | 126 .create-box-shadow(inset 1px 0 0 lightgray); |
frankban
2012/11/13 10:24:27
Here you can use the .create-box-shadow mixin. You
matthew.scott
2012/11/13 15:23:01
Done.
| |
127 -webkit-box-shadow: inset 1px 0 0 lightgray; | |
128 box-shadow: inset 1px 0 0 lightgray; | |
129 } | 127 } |
130 } | 128 } |
131 .nav-section { | 129 .nav-section { |
132 border-left: 1px solid transparent; | 130 border-left: 1px solid transparent; |
133 &.active-border { | 131 &.active-border { |
134 border-left-color: lightgray; | 132 border-left-color: lightgray; |
135 } | 133 } |
136 display: inline-block; | 134 display: inline-block; |
137 padding: 4px 10px; | 135 padding: 4px 10px; |
138 #charm-search-trigger { | 136 #charm-search-trigger { |
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
790 .customize-scrollbar; | 788 .customize-scrollbar; |
791 display: block; | 789 display: block; |
792 z-index: 999; | 790 z-index: 999; |
793 padding: 0; | 791 padding: 0; |
794 top: 70px; | 792 top: 70px; |
795 height: 100px; | 793 height: 100px; |
796 position: absolute; | 794 position: absolute; |
797 width: @charm-panel-width; | 795 width: @charm-panel-width; |
798 background-color: white; | 796 background-color: white; |
799 border-left: darkgray solid 1px; | 797 border-left: darkgray solid 1px; |
800 -moz-box-shadow: inset 1px 0 0 lightgray; | 798 .create-box-shadow(inset 1px 0 0 lightgray); |
801 -webkit-box-shadow: inset 1px 0 0 lightgray; | |
frankban
2012/11/13 10:24:27
Same as above.
matthew.scott
2012/11/13 15:23:01
Done.
| |
802 box-shadow: inset 1px 0 0 lightgray; | |
803 | 799 |
804 .charm-panel-configure .btn { | 800 .charm-panel-configure .btn { |
805 float: right; | 801 float: right; |
806 } | 802 } |
807 | 803 |
808 .btn.deploy { | 804 .btn.deploy { |
809 margin-top: 5px; | 805 margin-top: 5px; |
810 margin-left: 5px; | 806 margin-left: 5px; |
811 text-shadow: none; | 807 text-shadow: none; |
812 background-position: 0 0; /* Needed to defeat bootstrap btn:hover 0 -15px*/ | 808 background-position: 0 0; /* Needed to defeat bootstrap btn:hover 0 -15px*/ |
(...skipping 23 matching lines...) Expand all Loading... | |
836 @charm-panel-cancel-button-shadow, 0px); | 832 @charm-panel-cancel-button-shadow, 0px); |
837 &:active { | 833 &:active { |
838 .create-button(@charm-panel-cancel-button-color, @charm-panel-cancel -button-color, | 834 .create-button(@charm-panel-cancel-button-color, @charm-panel-cancel -button-color, |
839 @charm-panel-cancel-button-shadow, 1px); | 835 @charm-panel-cancel-button-shadow, 1px); |
840 } | 836 } |
841 } | 837 } |
842 .charm-panel-configure-buttons { | 838 .charm-panel-configure-buttons { |
843 background-color: #FFFFFF; | 839 background-color: #FFFFFF; |
844 border-bottom: 1px solid @charm-panel-border-color; | 840 border-bottom: 1px solid @charm-panel-border-color; |
845 height: 52px; | 841 height: 52px; |
846 width: @charm-panel-width - @charm-panel-padding-left - 1px; | 842 width: @charm-panel-width - @charm-panel-padding-left - 1px; |
frankban
2012/11/13 10:24:27
Really nice.
bac
2012/11/13 13:27:56
LESS is great, isn't it?
| |
847 float: right; | 843 float: right; |
848 padding-left: @charm-panel-padding-left; | 844 padding-left: @charm-panel-padding-left; |
849 .btn { | 845 .btn { |
850 margin-top: 12px; | 846 margin-top: 12px; |
851 width: 67px; | 847 width: 67px; |
852 } | 848 } |
853 } | 849 } |
854 .search-charm-inner { | 850 .search-charm-inner { |
855 width: 100%; | 851 width: 100%; |
856 height: 500px; | 852 height: 500px; |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1321 font-size: 22px; | 1317 font-size: 22px; |
1322 color: @charm-panel-configure-title-color; | 1318 color: @charm-panel-configure-title-color; |
1323 margin-top: 35px; | 1319 margin-top: 35px; |
1324 } | 1320 } |
1325 .name { | 1321 .name { |
1326 font-size: 12px; | 1322 font-size: 12px; |
1327 color: @charm-panel-configure-name-color; | 1323 color: @charm-panel-configure-name-color; |
1328 margin-top: 5px; | 1324 margin-top: 5px; |
1329 } | 1325 } |
1330 } | 1326 } |
LEFT | RIGHT |