2016-04-27 20:44:36 +08:00
|
|
|
@import "../../style/themes/default";
|
|
|
|
@import "../../style/mixins/index";
|
|
|
|
@import "./mixin";
|
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
@btn-prefix-cls: ~"@{ant-prefix}-btn";
|
2015-06-09 15:21:44 +08:00
|
|
|
|
2017-01-23 22:24:36 +08:00
|
|
|
// for compatibile
|
|
|
|
@btn-ghost-color : @text-color;
|
|
|
|
@btn-ghost-bg : transparent;
|
|
|
|
@btn-ghost-border : @border-color-base;
|
|
|
|
|
2015-06-09 15:21:44 +08:00
|
|
|
// Button styles
|
|
|
|
// -----------------------------
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{btn-prefix-cls} {
|
2015-06-09 15:21:44 +08:00
|
|
|
.btn;
|
2015-06-11 17:16:32 +08:00
|
|
|
.btn-default;
|
2015-06-09 15:21:44 +08:00
|
|
|
|
|
|
|
&-primary {
|
|
|
|
.btn-primary;
|
2015-06-12 19:41:30 +08:00
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{btn-prefix-cls}-group &:not(:first-child):not(:last-child) {
|
2015-07-09 10:56:28 +08:00
|
|
|
border-right-color: @btn-group-border;
|
|
|
|
border-left-color: @btn-group-border;
|
2016-12-30 14:27:23 +08:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
border-color: @btn-default-border;
|
|
|
|
}
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{btn-prefix-cls}-group &:first-child {
|
2015-06-09 15:21:44 +08:00
|
|
|
&:not(:last-child) {
|
2015-07-09 10:56:28 +08:00
|
|
|
border-right-color: @btn-group-border;
|
2016-01-25 21:06:32 +08:00
|
|
|
&[disabled] {
|
|
|
|
border-right-color: @btn-default-border;
|
|
|
|
}
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-25 21:06:32 +08:00
|
|
|
.@{btn-prefix-cls}-group &:last-child:not(:first-child),
|
2016-12-30 14:27:23 +08:00
|
|
|
.@{btn-prefix-cls}-group & + & {
|
2015-07-09 10:56:28 +08:00
|
|
|
border-left-color: @btn-group-border;
|
2016-01-25 21:06:32 +08:00
|
|
|
&[disabled] {
|
|
|
|
border-left-color: @btn-default-border;
|
|
|
|
}
|
2015-07-08 16:21:04 +08:00
|
|
|
}
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-ghost {
|
|
|
|
.btn-ghost;
|
|
|
|
}
|
|
|
|
|
2015-11-30 18:26:44 +08:00
|
|
|
&-dashed {
|
|
|
|
.btn-dashed;
|
|
|
|
}
|
|
|
|
|
2017-01-23 22:24:36 +08:00
|
|
|
&-danger {
|
|
|
|
.btn-danger;
|
|
|
|
}
|
|
|
|
|
2015-11-26 19:32:55 +08:00
|
|
|
&-circle,
|
|
|
|
&-circle-outline {
|
2015-08-20 16:55:42 +08:00
|
|
|
.btn-circle(@btn-prefix-cls);
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
|
|
|
|
2016-04-15 16:21:08 +08:00
|
|
|
&:before {
|
|
|
|
position: absolute;
|
|
|
|
top: -1px;
|
|
|
|
left: -1px;
|
|
|
|
bottom: -1px;
|
|
|
|
right: -1px;
|
|
|
|
background: #fff;
|
|
|
|
opacity: 0.35;
|
|
|
|
content: '';
|
|
|
|
border-radius: inherit;
|
|
|
|
z-index: 1;
|
|
|
|
transition: opacity .2s;
|
|
|
|
pointer-events: none;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-02-15 11:55:08 +08:00
|
|
|
&&-loading:before {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
&&-loading:not(&-circle):not(&-circle-outline) {
|
2015-12-28 13:49:58 +08:00
|
|
|
padding-left: 29px;
|
2015-07-30 11:15:03 +08:00
|
|
|
pointer-events: none;
|
2016-04-15 16:21:08 +08:00
|
|
|
position: relative;
|
2016-09-14 16:18:33 +08:00
|
|
|
.@{iconfont-css-prefix} {
|
2016-04-12 12:17:03 +08:00
|
|
|
margin-left: -14px;
|
2015-12-28 13:49:58 +08:00
|
|
|
}
|
2015-07-29 22:23:55 +08:00
|
|
|
}
|
|
|
|
|
2017-02-15 11:55:08 +08:00
|
|
|
&-sm&-loading:not(&-circle):not(&-circle-outline) {
|
2015-12-28 13:49:58 +08:00
|
|
|
padding-left: 24px;
|
2016-09-14 16:18:33 +08:00
|
|
|
.@{iconfont-css-prefix} {
|
2016-04-12 12:17:03 +08:00
|
|
|
margin-left: -17px;
|
2015-07-29 22:23:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-09 15:21:44 +08:00
|
|
|
&-group {
|
2015-08-20 16:55:42 +08:00
|
|
|
.btn-group(@btn-prefix-cls);
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
2015-09-27 16:30:35 +08:00
|
|
|
|
2016-04-27 20:44:36 +08:00
|
|
|
&:not(&-circle):not(&-circle-outline)&-icon-only {
|
2016-04-06 15:43:50 +08:00
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
|
|
|
|
2017-03-05 20:12:36 +08:00
|
|
|
// http://stackoverflow.com/a/21281554/3040605
|
|
|
|
&:focus > span,
|
|
|
|
&:active > span {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2015-09-27 16:30:35 +08:00
|
|
|
// To ensure that a space will be placed between character and `Icon`.
|
2015-11-26 19:32:55 +08:00
|
|
|
> .@{iconfont-css-prefix} + span,
|
|
|
|
> span + .@{iconfont-css-prefix} {
|
2015-09-27 16:30:35 +08:00
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
2016-02-18 16:08:48 +08:00
|
|
|
|
2016-05-18 13:15:42 +08:00
|
|
|
&-clicked:after {
|
2016-12-02 15:06:59 +08:00
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: -1px;
|
|
|
|
left: -1px;
|
|
|
|
bottom: -1px;
|
|
|
|
right: -1px;
|
|
|
|
border-radius: inherit;
|
2017-02-26 02:18:20 +08:00
|
|
|
border: 0 solid @primary-color;
|
2016-12-02 15:06:59 +08:00
|
|
|
opacity: 0.4;
|
2017-02-26 02:18:20 +08:00
|
|
|
animation: buttonEffect .4s;
|
2016-04-19 13:40:58 +08:00
|
|
|
display: block;
|
2016-02-18 16:08:48 +08:00
|
|
|
}
|
2017-01-23 22:24:36 +08:00
|
|
|
|
2017-02-14 11:54:52 +08:00
|
|
|
&-danger&-clicked:after {
|
|
|
|
border-color: @btn-danger-bg;
|
|
|
|
}
|
|
|
|
|
2017-01-23 22:24:36 +08:00
|
|
|
&-background-ghost {
|
|
|
|
background: transparent!important;
|
|
|
|
border-color: #fff;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2017-01-31 21:27:23 +08:00
|
|
|
&-background-ghost&-primary {
|
2017-03-18 16:33:55 +08:00
|
|
|
.button-variant-ghost(@primary-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
&-background-ghost&-danger {
|
|
|
|
.button-variant-ghost(@btn-danger-bg);
|
2017-01-23 22:24:36 +08:00
|
|
|
}
|
2016-02-18 16:08:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes buttonEffect {
|
2016-12-02 15:06:59 +08:00
|
|
|
to {
|
|
|
|
opacity: 0;
|
2016-09-28 00:13:00 +08:00
|
|
|
top: -6px;
|
2016-12-02 15:06:59 +08:00
|
|
|
left: -6px;
|
|
|
|
bottom: -6px;
|
|
|
|
right: -6px;
|
2017-02-26 02:18:20 +08:00
|
|
|
border-width: 6px;
|
2016-12-02 15:06:59 +08:00
|
|
|
}
|
2015-06-09 16:40:16 +08:00
|
|
|
}
|