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

206 lines
3.9 KiB
Plaintext
Raw Normal View History

@import '../../style/themes/index';
2018-12-07 16:17:45 +08:00
@import '../../style/mixins/index';
2018-12-07 16:17:45 +08:00
@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} {
.reset-component;
2019-04-15 10:52:00 +08:00
2016-04-05 16:51:26 +08:00
display: inline-block;
&-line {
position: relative;
2015-07-29 22:20:05 +08:00
width: 100%;
2016-11-08 20:57:07 +08:00
font-size: @font-size-base;
2015-07-29 22:20:05 +08:00
}
2016-04-05 16:51:26 +08:00
&-steps {
display: inline-block;
&-outer {
display: flex;
flex-direction: row;
align-items: center;
}
&-item {
flex-shrink: 0;
min-width: 2px;
margin-right: 2px;
2019-12-25 20:24:40 +08:00
background: @progress-steps-item-bg;
transition: all 0.3s;
&-active {
background: @progress-default-color;
}
}
}
&-small&-line,
&-small&-line &-text .@{iconfont-css-prefix} {
font-size: @font-size-sm;
}
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 & {
2018-12-07 16:17:45 +08:00
margin-right: ~'calc(-2em - 8px)';
padding-right: ~'calc(2em + 8px)';
2015-07-30 17:27:41 +08:00
}
}
2016-04-05 16:51:26 +08:00
&-inner {
position: relative;
2015-06-14 19:50:23 +08:00
display: inline-block;
2015-07-29 22:20:05 +08:00
width: 100%;
2019-08-02 18:21:24 +08:00
overflow: hidden;
vertical-align: middle;
background-color: @progress-remaining-color;
2019-07-17 18:28:02 +08:00
border-radius: @progress-radius;
2015-07-29 22:20:05 +08:00
}
2016-04-05 16:51:26 +08:00
&-circle-trail {
stroke: @progress-remaining-color;
}
&-circle-path {
2018-12-07 16:17:45 +08:00
animation: ~'@{ant-prefix}-progress-appear' 0.3s;
2019-08-15 10:30:18 +08:00
}
&-inner:not(.@{ant-prefix}-progress-circle-gradient) {
.@{ant-prefix}-progress-circle-path {
stroke: @progress-default-color;
}
}
2018-01-19 15:22:37 +08:00
&-success-bg,
2016-04-05 16:51:26 +08:00
&-bg {
position: relative;
background-color: @progress-default-color;
2019-07-17 18:28:02 +08:00
border-radius: @progress-radius;
2018-12-07 16:17:45 +08:00
transition: all 0.4s @ease-out-circ 0s;
2015-06-14 19:50:23 +08:00
}
2016-04-05 16:51:26 +08:00
2018-01-19 15:22:37 +08:00
&-success-bg {
position: absolute;
top: 0;
left: 0;
background-color: @success-color;
2018-01-19 15:22:37 +08:00
}
2016-04-05 16:51:26 +08:00
&-text {
display: inline-block;
2017-06-05 14:12:59 +08:00
width: 2em;
margin-left: 8px;
color: @text-color-secondary;
font-size: @progress-text-font-size;
line-height: 1;
white-space: nowrap;
text-align: left;
vertical-align: middle;
word-break: normal;
.@{iconfont-css-prefix} {
2016-11-08 20:57:07 +08:00
font-size: @font-size-base;
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
position: absolute;
2015-08-20 16:55:42 +08:00
top: 0;
right: 0;
bottom: 0;
left: 0;
background: @component-background;
2015-07-30 15:07:38 +08:00
border-radius: 10px;
opacity: 0;
2018-12-07 16:17:45 +08:00
animation: ~'@{ant-prefix}-progress-active' 2.4s @ease-out-quint infinite;
content: '';
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
}
2019-08-15 10:30:18 +08:00
}
&-status-exception &-inner:not(.@{progress-prefix-cls}-circle-gradient) {
.@{progress-prefix-cls}-circle-path {
stroke: @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
}
2019-08-15 10:30:18 +08:00
}
&-status-success &-inner:not(.@{progress-prefix-cls}-circle-gradient) {
.@{progress-prefix-cls}-circle-path {
stroke: @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
position: absolute;
2015-06-15 17:30:24 +08:00
top: 50%;
left: 50%;
width: 100%;
2016-04-05 16:51:26 +08:00
margin: 0;
padding: 0;
color: @progress-text-color;
font-size: @progress-circle-text-font-size;
line-height: 1;
white-space: normal;
text-align: center;
transform: translate(-50%, -50%);
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 {
2016-04-05 16:51:26 +08:00
.@{progress-prefix-cls}-text {
2015-07-30 15:54:08 +08:00
color: @error-color;
2015-07-29 23:32:24 +08:00
}
}
&-circle&-status-success {
2016-04-05 16:51:26 +08:00
.@{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% {
2017-01-09 23:05:18 +08:00
width: 0;
opacity: 0.1;
2017-01-09 23:05:18 +08:00
}
20% {
2015-07-30 15:07:38 +08:00
width: 0;
opacity: 0.5;
2015-07-30 15:07:38 +08:00
}
100% {
width: 100%;
opacity: 0;
2015-07-30 15:07:38 +08:00
}
}
@import './rtl';