ant-design/style/components/button.less

92 lines
1.7 KiB
Plaintext
Raw Normal View History

2015-06-09 15:21:44 +08:00
@import "../mixins/index";
2015-08-20 16:55:42 +08:00
@btn-prefix-cls: ~"@{css-prefix}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;
2015-06-09 15:21:44 +08:00
}
}
2015-08-20 16:55:42 +08:00
.@{btn-prefix-cls}-group &:last-child:not(:first-child) {
2015-07-09 10:56:28 +08:00
border-left-color: @btn-group-border;
2015-06-09 15:21:44 +08:00
}
2015-07-08 16:21:04 +08:00
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;
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
}
&-circle-outline {
.btn-circle-outline;
}
&:after {
font-family: anticon;
2015-11-12 22:59:25 +08:00
content: "\e6a1";
position: absolute;
opacity: 0;
2015-10-28 10:35:48 +08:00
visibility: hidden;
transition: opacity 0.5s ease;
}
2015-07-29 22:23:55 +08:00
&-loading {
padding-right: 31px;
2015-07-30 11:15:03 +08:00
pointer-events: none;
opacity: 0.75;
2015-07-29 22:23:55 +08:00
&:after {
.animation(loadingCircle 1s infinite linear);
height: 12px;
line-height: 12px;
2015-12-02 22:31:24 +08:00
right: 11px;
2015-07-29 22:23:55 +08:00
top: 50%;
margin-top: -6px;
opacity: 1;
2015-10-28 10:35:48 +08:00
visibility: visible;
2015-07-29 22:23:55 +08:00
}
}
&-sm&-loading {
padding-right: 24px;
&:after {
2015-12-02 22:31:24 +08:00
right: 7px;
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
// 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;
}
2015-06-09 16:40:16 +08:00
}