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

132 lines
2.4 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
@progress-prefix-cls: ~"@{ant-prefix}-progress";
2015-06-14 19:50:23 +08:00
2015-08-20 16:55:42 +08:00
.@{progress-prefix-cls} {
2016-04-05 16:51:26 +08:00
display: inline-block;
&-line {
2015-07-29 22:20:05 +08:00
width: 100%;
2015-06-15 16:16:51 +08:00
font-size: 12px;
2015-07-29 22:20:05 +08:00
position: relative;
}
2016-04-05 16:51:26 +08:00
&-outer {
2016-03-28 16:52:00 +08:00
display: inline-block;
width: 100%;
2016-04-05 16:51:26 +08:00
margin-right: 0;
padding-right: 0;
.@{progress-prefix-cls}-show-info & {
padding-right: 45px;
margin-right: -45px;
2015-07-30 17:27:41 +08:00
}
}
2016-04-05 16:51:26 +08:00
&-inner {
2015-06-14 19:50:23 +08:00
display: inline-block;
2015-07-29 22:20:05 +08:00
width: 100%;
2016-03-04 17:18:57 +08:00
background-color: #f3f3f3;
2015-07-29 22:20:05 +08:00
border-radius: 100px;
2016-03-28 16:52:00 +08:00
vertical-align: middle;
2015-07-29 22:20:05 +08:00
}
2016-04-05 16:51:26 +08:00
&-bg {
2015-07-29 22:20:05 +08:00
border-radius: 100px;
background-color: @info-color;
2016-07-21 14:27:54 +08:00
transition: all .4s @ease-out-circ 0s;
2015-09-23 11:56:38 +08:00
position: relative;
2015-06-14 19:50:23 +08:00
}
2016-04-05 16:51:26 +08:00
&-text {
2015-07-29 22:20:05 +08:00
width: 35px;
text-align: left;
2015-06-14 19:50:23 +08:00
font-size: 1em;
margin-left: 10px;
2016-03-28 16:52:00 +08:00
vertical-align: middle;
display: inline-block;
font-family: tahoma;
.@{iconfont-css-prefix} {
2015-07-09 18:17:15 +08:00
font-size: 12px;
2015-06-14 19:50:23 +08:00
}
}
2016-04-05 16:51:26 +08:00
&-status-active {
.@{progress-prefix-cls}-bg:before {
2015-07-30 15:07:38 +08:00
content: "";
opacity: 0;
position: absolute;
2015-08-20 16:55:42 +08:00
top: 0;
left: 0;
right: 0;
bottom: 0;
2015-07-30 15:07:38 +08:00
background: #fff;
border-radius: 10px;
animation: ~"@{ant-prefix}-progress-active" 2s @ease-out-quint infinite;
2015-07-30 15:07:38 +08:00
}
}
2016-04-05 16:51:26 +08:00
&-status-exception {
.@{progress-prefix-cls}-bg {
2015-07-30 15:07:38 +08:00
background-color: @error-color;
2015-07-29 22:20:05 +08:00
}
2016-04-05 16:51:26 +08:00
.@{progress-prefix-cls}-text {
2015-07-30 15:07:38 +08:00
color: @error-color;
2015-07-29 22:20:05 +08:00
}
}
2016-04-05 16:51:26 +08:00
&-status-success {
.@{progress-prefix-cls}-bg {
2015-07-30 15:07:38 +08:00
background-color: @success-color;
2015-07-29 22:20:05 +08:00
}
2016-04-05 16:51:26 +08:00
.@{progress-prefix-cls}-text {
2015-07-30 15:07:38 +08:00
color: @success-color;
2015-07-29 22:20:05 +08:00
}
}
2015-06-14 20:07:21 +08:00
2016-04-05 16:51:26 +08:00
&-circle &-inner {
2015-06-14 20:07:21 +08:00
position: relative;
2015-06-14 23:04:43 +08:00
line-height: 1;
2016-04-05 16:51:26 +08:00
background-color: transparent;
2015-06-14 20:07:21 +08:00
}
2016-04-05 16:51:26 +08:00
&-circle &-text {
2015-06-14 20:07:21 +08:00
display: block;
position: absolute;
width: 100%;
text-align: center;
2015-06-14 23:04:43 +08:00
line-height: 1;
2015-06-15 17:30:24 +08:00
top: 50%;
transform: translateY(-50%);
2015-06-14 23:04:43 +08:00
left: 0;
2016-03-28 16:52:00 +08:00
font-family: tahoma;
2016-04-05 16:51:26 +08:00
margin: 0;
2015-06-14 20:07:21 +08:00
.@{iconfont-css-prefix} {
2015-08-20 16:55:42 +08:00
font-size: 14 / 12em;
2015-06-14 20:07:21 +08:00
}
}
2016-04-05 16:51:26 +08:00
&-circle &-status-exception {
.@{progress-prefix-cls}-text {
2015-07-30 15:54:08 +08:00
color: @error-color;
2015-07-29 23:32:24 +08:00
}
}
2016-04-05 16:51:26 +08:00
&-circle &-status-success {
.@{progress-prefix-cls}-text {
2015-07-30 15:54:08 +08:00
color: @success-color;
2015-07-29 23:32:24 +08:00
}
}
2015-06-15 11:00:27 +08:00
}
2015-07-30 15:07:38 +08:00
@keyframes ~"@{ant-prefix}-progress-active" {
2015-07-30 15:07:38 +08:00
0% {
opacity: .3;
width: 0;
}
100% {
opacity: 0;
width: 100%;
}
}