Commit 62260dccba0bbf05445d6873eeffeb7fef58eae4
Merge remote-tracking branch 'origin/wynn'
Showing
4 changed files
with
15 additions
and
7 deletions
Show diff stats
src/styles/components/button.less
... | ... | @@ -156,8 +156,16 @@ |
156 | 156 | color: #fff; |
157 | 157 | border-color: #fff; |
158 | 158 | &:hover{ |
159 | - color: tint(@primary-color, 20%); | |
160 | - border-color: tint(@primary-color, 20%); | |
159 | + color: tint(@search-color, 20%); | |
160 | + border-color: tint(@search-color, 20%); | |
161 | + } | |
162 | + } | |
163 | + &-default { | |
164 | + color: #333; | |
165 | + border-color: @border-color-base; | |
166 | + &:hover { | |
167 | + color: #3fcdc0; | |
168 | + border-color: #3fcdc0; | |
161 | 169 | } |
162 | 170 | } |
163 | 171 | &-ghost&-primary{ | ... | ... |
src/styles/components/tabs.less
src/styles/custom.less
... | ... | @@ -91,7 +91,7 @@ |
91 | 91 | @btn-font-size-large : 14px; |
92 | 92 | @btn-border-radius : 4px; |
93 | 93 | @btn-border-radius-small: 3px; |
94 | -@btn-group-border : shade(@primary-color, 5%); | |
94 | +@btn-group-border : shade(@mew-common-color, 5%); | |
95 | 95 | |
96 | 96 | @btn-disable-color : #c5c8ce; |
97 | 97 | @btn-disable-bg : @background-color-base; | ... | ... |
src/styles/mixins/button.less
... | ... | @@ -206,13 +206,13 @@ |
206 | 206 | &:hover |
207 | 207 | //&:focus |
208 | 208 | { |
209 | - .button-color(tint(@primary-color, 20%); white; tint(@primary-color, 20%)); | |
209 | + .button-color(tint(@search-color, 20%); white; tint(@search-color, 20%)); | |
210 | 210 | } |
211 | 211 | &:active, |
212 | 212 | &.active { |
213 | - .button-color(shade(@primary-color, 5%); white; shade(@primary-color, 5%)); | |
213 | + .button-color(shade(@search-color, 5%); white; shade(@search-color, 5%)); | |
214 | 214 | } |
215 | - .active-btn-color(@primary-color); | |
215 | + .active-btn-color(@search-color); | |
216 | 216 | } |
217 | 217 | |
218 | 218 | // Primary | ... | ... |