mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
new style of danger button (#5815)
* new style for danger button * improve
This commit is contained in:
parent
b236d73348
commit
75e9e44a2f
@ -138,7 +138,7 @@
|
||||
}
|
||||
|
||||
&-danger&-clicked:after {
|
||||
border-color: @btn-danger-bg;
|
||||
border-color: @btn-danger-color;
|
||||
}
|
||||
|
||||
&-background-ghost {
|
||||
@ -152,7 +152,7 @@
|
||||
}
|
||||
|
||||
&-background-ghost&-danger {
|
||||
.button-variant-ghost(@btn-danger-bg);
|
||||
.button-variant-ghost(@btn-danger-color);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -51,6 +51,22 @@
|
||||
.button-disabled();
|
||||
}
|
||||
|
||||
.button-variant-danger(@color; @background; @border) {
|
||||
.button-color(@color; @background; @border);
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
.button-color(@btn-primary-color; @color; @color;);
|
||||
}
|
||||
|
||||
&:active,
|
||||
&.active {
|
||||
.button-color(@btn-primary-color; ~`colorPalette("@{color}", 7)`; ~`colorPalette("@{color}", 7)`;);
|
||||
}
|
||||
|
||||
.button-disabled();
|
||||
}
|
||||
|
||||
.button-variant-ghost(@color) {
|
||||
.button-color(@color; transparent; @color);
|
||||
|
||||
@ -202,7 +218,7 @@
|
||||
|
||||
// danger button style
|
||||
.btn-danger() {
|
||||
.button-variant-primary(@btn-danger-color, @btn-danger-bg);
|
||||
.button-variant-danger(@btn-danger-color, @btn-danger-bg, @btn-danger-border);
|
||||
}
|
||||
|
||||
// circle button: the content only contains icon
|
||||
|
@ -108,8 +108,9 @@
|
||||
@btn-default-bg : #fff;
|
||||
@btn-default-border : @border-color-base;
|
||||
|
||||
@btn-danger-color : #fff;
|
||||
@btn-danger-bg : @red-6;
|
||||
@btn-danger-color : @error-color;
|
||||
@btn-danger-bg : @background-color-base;
|
||||
@btn-danger-border : @border-color-base;
|
||||
|
||||
@btn-disable-color : @disabled-color;
|
||||
@btn-disable-bg : @background-color-base;
|
||||
|
Loading…
Reference in New Issue
Block a user