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,8 +156,16 @@ | ||
156 | color: #fff; | 156 | color: #fff; |
157 | border-color: #fff; | 157 | border-color: #fff; |
158 | &:hover{ | 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 | &-ghost&-primary{ | 171 | &-ghost&-primary{ |
src/styles/components/tabs.less
@@ -201,7 +201,7 @@ | @@ -201,7 +201,7 @@ | ||
201 | background: #fff; | 201 | background: #fff; |
202 | transform: translateZ(0); | 202 | transform: translateZ(0); |
203 | border-color: @border-color-base; | 203 | border-color: @border-color-base; |
204 | - color: @primary-color; | 204 | + color: @mew-common-color; |
205 | } | 205 | } |
206 | &&-card > &-bar &-nav-wrap { | 206 | &&-card > &-bar &-nav-wrap { |
207 | margin-bottom: 0; | 207 | margin-bottom: 0; |
src/styles/custom.less
@@ -91,7 +91,7 @@ | @@ -91,7 +91,7 @@ | ||
91 | @btn-font-size-large : 14px; | 91 | @btn-font-size-large : 14px; |
92 | @btn-border-radius : 4px; | 92 | @btn-border-radius : 4px; |
93 | @btn-border-radius-small: 3px; | 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 | @btn-disable-color : #c5c8ce; | 96 | @btn-disable-color : #c5c8ce; |
97 | @btn-disable-bg : @background-color-base; | 97 | @btn-disable-bg : @background-color-base; |
src/styles/mixins/button.less
@@ -206,13 +206,13 @@ | @@ -206,13 +206,13 @@ | ||
206 | &:hover | 206 | &:hover |
207 | //&:focus | 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 | &:active, | 211 | &:active, |
212 | &.active { | 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 | // Primary | 218 | // Primary |