ant-design/components/button/style/index.less

128 lines
2.3 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
@import "./mixin";
@btn-prefix-cls: ant-btn;
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;
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;
&[disabled] {
border-right-color: @btn-default-border;
}
2015-06-09 15:21:44 +08:00
}
}
.@{btn-prefix-cls}-group &:last-child:not(:first-child),
2015-08-20 16:55:42 +08:00
.@{btn-prefix-cls}-group & + .@{btn-prefix-cls} {
2015-07-09 10:56:28 +08:00
border-left-color: @btn-group-border;
&[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;
}
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
}
&: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;
}
2015-12-28 13:49:58 +08:00
&&-loading {
padding-left: 29px;
2015-07-30 11:15:03 +08:00
pointer-events: none;
position: relative;
2016-04-12 12:17:03 +08:00
.anticon {
margin-left: -14px;
2016-04-19 15:15:54 +08:00
transition: all .3s @ease-in-out;
2015-12-28 13:49:58 +08:00
}
&:before {
display: block;
}
2015-07-29 22:23:55 +08:00
}
&-sm&-loading {
2015-12-28 13:49:58 +08:00
padding-left: 24px;
2016-04-12 12:17:03 +08:00
.anticon {
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
&:not(&-circle):not(&-circle-outline)&-icon-only {
padding-left: 8px;
padding-right: 8px;
}
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-05-18 13:15:42 +08:00
&-clicked:after {
content: '';
position: absolute;
2016-03-12 00:13:05 +08:00
top: -1px;
left: -1px;
bottom: -1px;
right: -1px;
border-radius: inherit;
2016-03-10 15:00:59 +08:00
border: 0 solid @primary-color;
2016-03-11 12:00:21 +08:00
opacity: 0.4;
2016-03-12 00:13:05 +08:00
animation: buttonEffect 0.32s ease forwards;
2016-04-19 13:40:58 +08:00
display: block;
}
}
@keyframes buttonEffect {
to {
opacity: 0;
2016-03-11 12:00:21 +08:00
top: -5px;
left: -5px;
bottom: -5px;
right: -5px;
border-width: 5px;
}
2015-06-09 16:40:16 +08:00
}