Commit 3814be22 authored by nikogu's avatar nikogu

Updates

parent 21f2ec79
...@@ -3056,6 +3056,207 @@ body { ...@@ -3056,6 +3056,207 @@ body {
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable declaration-bang-space-before */ /* stylelint-disable declaration-bang-space-before */
/* stylelint-disable declaration-bang-space-before */ /* stylelint-disable declaration-bang-space-before */
.ant-spin {
font-family: "Helvetica Neue For Number", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.5;
color: rgba(0, 0, 0, 0.65);
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
list-style: none;
color: #1890ff;
vertical-align: middle;
text-align: center;
opacity: 0;
position: absolute;
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
-o-transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
display: none;
}
.ant-spin-spinning {
opacity: 1;
position: static;
display: inline-block;
}
.ant-spin-nested-loading {
position: relative;
}
.ant-spin-nested-loading > div > .ant-spin {
position: absolute;
height: 100%;
max-height: 320px;
width: 100%;
z-index: 4;
}
.ant-spin-nested-loading > div > .ant-spin .ant-spin-dot {
position: absolute;
top: 50%;
left: 50%;
margin: -10px;
}
.ant-spin-nested-loading > div > .ant-spin .ant-spin-text {
position: absolute;
top: 50%;
width: 100%;
padding-top: 5px;
}
.ant-spin-nested-loading > div > .ant-spin.ant-spin-show-text .ant-spin-dot {
margin-top: -20px;
}
.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-dot {
margin: -7px;
}
.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-text {
padding-top: 2px;
}
.ant-spin-nested-loading > div > .ant-spin-sm.ant-spin-show-text .ant-spin-dot {
margin-top: -17px;
}
.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-dot {
margin: -16px;
}
.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-text {
padding-top: 11px;
}
.ant-spin-nested-loading > div > .ant-spin-lg.ant-spin-show-text .ant-spin-dot {
margin-top: -26px;
}
.ant-spin-container {
position: relative;
}
.ant-spin-blur {
overflow: hidden;
opacity: 0.7;
-webkit-filter: blur(0.5px);
filter: blur(0.5px);
/* autoprefixer: off */
filter: progid\:DXImageTransform\.Microsoft\.Blur(PixelRadius\=1, MakeShadow\=false);
/* autoprefixer: on */
-webkit-transform: translateZ(0);
}
.ant-spin-blur:after {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: #fff;
opacity: 0.3;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
z-index: 10;
}
.ant-spin-tip {
color: rgba(0, 0, 0, 0.45);
}
.ant-spin-dot {
position: relative;
display: inline-block;
width: 20px;
height: 20px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-animation: antRotate 1.2s infinite linear;
animation: antRotate 1.2s infinite linear;
}
.ant-spin-dot i {
width: 9px;
height: 9px;
border-radius: 100%;
background-color: #1890ff;
-webkit-transform: scale(0.75);
-ms-transform: scale(0.75);
transform: scale(0.75);
display: block;
position: absolute;
opacity: 0.3;
-webkit-animation: antSpinMove 1s infinite linear alternate;
animation: antSpinMove 1s infinite linear alternate;
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.ant-spin-dot i:nth-child(1) {
left: 0;
top: 0;
}
.ant-spin-dot i:nth-child(2) {
right: 0;
top: 0;
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
.ant-spin-dot i:nth-child(3) {
right: 0;
bottom: 0;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
.ant-spin-dot i:nth-child(4) {
left: 0;
bottom: 0;
-webkit-animation-delay: 1.2s;
animation-delay: 1.2s;
}
.ant-spin-sm .ant-spin-dot {
width: 14px;
height: 14px;
}
.ant-spin-sm .ant-spin-dot i {
width: 6px;
height: 6px;
}
.ant-spin-lg .ant-spin-dot {
width: 32px;
height: 32px;
}
.ant-spin-lg .ant-spin-dot i {
width: 14px;
height: 14px;
}
.ant-spin.ant-spin-show-text .ant-spin-text {
display: block;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ */
.ant-spin-blur {
background: #fff;
opacity: 0.5;
}
}
@-webkit-keyframes antSpinMove {
to {
opacity: 1;
}
}
@keyframes antSpinMove {
to {
opacity: 1;
}
}
@-webkit-keyframes antRotate {
to {
-webkit-transform: rotate(405deg);
transform: rotate(405deg);
}
}
@keyframes antRotate {
to {
-webkit-transform: rotate(405deg);
transform: rotate(405deg);
}
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable declaration-bang-space-before */
/* stylelint-disable declaration-bang-space-before */
.ant-dropdown { .ant-dropdown {
font-family: "Helvetica Neue For Number", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-family: "Helvetica Neue For Number", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px; font-size: 14px;
...@@ -3077,7 +3278,7 @@ body { ...@@ -3077,7 +3278,7 @@ body {
} }
.ant-dropdown-wrap .ant-btn > .anticon-down { .ant-dropdown-wrap .ant-btn > .anticon-down {
display: inline-block; display: inline-block;
font-size: 14px; font-size: 12px;
font-size: 10px \9; font-size: 10px \9;
-webkit-transform: scale(0.83333333) rotate(0deg); -webkit-transform: scale(0.83333333) rotate(0deg);
-ms-transform: scale(0.83333333) rotate(0deg); -ms-transform: scale(0.83333333) rotate(0deg);
...@@ -3210,7 +3411,7 @@ body { ...@@ -3210,7 +3411,7 @@ body {
content: "\E61F"; content: "\E61F";
color: rgba(0, 0, 0, 0.45); color: rgba(0, 0, 0, 0.45);
display: inline-block; display: inline-block;
font-size: 14px; font-size: 12px;
font-size: 10px \9; font-size: 10px \9;
-webkit-transform: scale(0.83333333) rotate(0deg); -webkit-transform: scale(0.83333333) rotate(0deg);
-ms-transform: scale(0.83333333) rotate(0deg); -ms-transform: scale(0.83333333) rotate(0deg);
...@@ -3283,7 +3484,7 @@ body { ...@@ -3283,7 +3484,7 @@ body {
.ant-dropdown-trigger .anticon-down, .ant-dropdown-trigger .anticon-down,
.ant-dropdown-link .anticon-down { .ant-dropdown-link .anticon-down {
display: inline-block; display: inline-block;
font-size: 14px; font-size: 12px;
font-size: 10px \9; font-size: 10px \9;
-webkit-transform: scale(0.83333333) rotate(0deg); -webkit-transform: scale(0.83333333) rotate(0deg);
-ms-transform: scale(0.83333333) rotate(0deg); -ms-transform: scale(0.83333333) rotate(0deg);
...@@ -3302,7 +3503,7 @@ body { ...@@ -3302,7 +3503,7 @@ body {
} }
.ant-dropdown-button .anticon-down { .ant-dropdown-button .anticon-down {
display: inline-block; display: inline-block;
font-size: 14px; font-size: 12px;
font-size: 10px \9; font-size: 10px \9;
-webkit-transform: scale(0.83333333) rotate(0deg); -webkit-transform: scale(0.83333333) rotate(0deg);
-ms-transform: scale(0.83333333) rotate(0deg); -ms-transform: scale(0.83333333) rotate(0deg);
...@@ -4085,7 +4286,7 @@ body { ...@@ -4085,7 +4286,7 @@ body {
} }
.ant-btn > .anticon + span, .ant-btn > .anticon + span,
.ant-btn > span + .anticon { .ant-btn > span + .anticon {
margin-left: 0.5em; margin-left: 8px;
} }
.ant-btn-clicked:after { .ant-btn-clicked:after {
content: ''; content: '';
...@@ -4392,6 +4593,7 @@ body { ...@@ -4392,6 +4593,7 @@ body {
.ant-avatar > img { .ant-avatar > img {
width: 100%; width: 100%;
height: 100%; height: 100%;
display: block;
} }
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable declaration-bang-space-before */ /* stylelint-disable declaration-bang-space-before */
...@@ -4409,10 +4611,10 @@ body { ...@@ -4409,10 +4611,10 @@ body {
display: inline-block; display: inline-block;
line-height: 20px; line-height: 20px;
height: 22px; height: 22px;
padding: 0 8px; padding: 0 7px;
border-radius: 4px; border-radius: 4px;
border: 1px solid #d9d9d9; border: 1px solid #d9d9d9;
background: #f5f5f5; background: #fafafa;
font-size: 12px; font-size: 12px;
-webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
-o-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); -o-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
...@@ -4437,26 +4639,24 @@ body { ...@@ -4437,26 +4639,24 @@ body {
} }
.ant-tag .anticon-cross { .ant-tag .anticon-cross {
display: inline-block; display: inline-block;
font-size: 14px; font-size: 12px;
font-size: 10px \9; font-size: 10px \9;
-webkit-transform: scale(0.83333333) rotate(0deg); -webkit-transform: scale(0.83333333) rotate(0deg);
-ms-transform: scale(0.83333333) rotate(0deg); -ms-transform: scale(0.83333333) rotate(0deg);
transform: scale(0.83333333) rotate(0deg); transform: scale(0.83333333) rotate(0deg);
position: relative; position: relative;
top: .8px; top: 1px;
cursor: pointer; cursor: pointer;
font-weight: bold;
margin-left: 3px; margin-left: 3px;
-webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
-o-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); -o-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
opacity: 0.66;
} }
:root .ant-tag .anticon-cross { :root .ant-tag .anticon-cross {
font-size: 14px; font-size: 14px;
} }
.ant-tag .anticon-cross:hover { .ant-tag .anticon-cross:hover {
opacity: 1; color: rgba(0, 0, 0, 0.85);
} }
.ant-tag-has-color { .ant-tag-has-color {
border-color: transparent; border-color: transparent;
...@@ -4506,7 +4706,7 @@ body { ...@@ -4506,7 +4706,7 @@ body {
.ant-tag-pink { .ant-tag-pink {
color: #eb2f96; color: #eb2f96;
background: #fff0f6; background: #fff0f6;
border-color: #ffd6e7; border-color: #ffadd2;
} }
.ant-tag-pink-inverse { .ant-tag-pink-inverse {
background: #eb2f96; background: #eb2f96;
...@@ -4516,7 +4716,7 @@ body { ...@@ -4516,7 +4716,7 @@ body {
.ant-tag-magenta { .ant-tag-magenta {
color: #eb2f96; color: #eb2f96;
background: #fff0f6; background: #fff0f6;
border-color: #ffd6e7; border-color: #ffadd2;
} }
.ant-tag-magenta-inverse { .ant-tag-magenta-inverse {
background: #eb2f96; background: #eb2f96;
...@@ -4526,17 +4726,27 @@ body { ...@@ -4526,17 +4726,27 @@ body {
.ant-tag-red { .ant-tag-red {
color: #f5222d; color: #f5222d;
background: #fff1f0; background: #fff1f0;
border-color: #ffccc7; border-color: #ffa39e;
} }
.ant-tag-red-inverse { .ant-tag-red-inverse {
background: #f5222d; background: #f5222d;
border-color: #f5222d; border-color: #f5222d;
color: #fff; color: #fff;
} }
.ant-tag-volcano {
color: #fa541c;
background: #fff2e8;
border-color: #ffbb96;
}
.ant-tag-volcano-inverse {
background: #fa541c;
border-color: #fa541c;
color: #fff;
}
.ant-tag-orange { .ant-tag-orange {
color: #fa8c16; color: #fa8c16;
background: #fff7e6; background: #fff7e6;
border-color: #ffe7ba; border-color: #ffd591;
} }
.ant-tag-orange-inverse { .ant-tag-orange-inverse {
background: #fa8c16; background: #fa8c16;
...@@ -4546,27 +4756,47 @@ body { ...@@ -4546,27 +4756,47 @@ body {
.ant-tag-yellow { .ant-tag-yellow {
color: #fadb14; color: #fadb14;
background: #feffe6; background: #feffe6;
border-color: #ffffb8; border-color: #fffb8f;
} }
.ant-tag-yellow-inverse { .ant-tag-yellow-inverse {
background: #fadb14; background: #fadb14;
border-color: #fadb14; border-color: #fadb14;
color: #fff; color: #fff;
} }
.ant-tag-gold {
color: #faad14;
background: #fffbe6;
border-color: #ffe58f;
}
.ant-tag-gold-inverse {
background: #faad14;
border-color: #faad14;
color: #fff;
}
.ant-tag-cyan { .ant-tag-cyan {
color: #13c2c2; color: #13c2c2;
background: #e6fffb; background: #e6fffb;
border-color: #b5f5ec; border-color: #87e8de;
} }
.ant-tag-cyan-inverse { .ant-tag-cyan-inverse {
background: #13c2c2; background: #13c2c2;
border-color: #13c2c2; border-color: #13c2c2;
color: #fff; color: #fff;
} }
.ant-tag-lime {
color: #a0d911;
background: #fcffe6;
border-color: #eaff8f;
}
.ant-tag-lime-inverse {
background: #a0d911;
border-color: #a0d911;
color: #fff;
}
.ant-tag-green { .ant-tag-green {
color: #52c41a; color: #52c41a;
background: #f6ffed; background: #f6ffed;
border-color: #d9f7be; border-color: #b7eb8f;
} }
.ant-tag-green-inverse { .ant-tag-green-inverse {
background: #52c41a; background: #52c41a;
...@@ -4576,17 +4806,27 @@ body { ...@@ -4576,17 +4806,27 @@ body {
.ant-tag-blue { .ant-tag-blue {
color: #1890ff; color: #1890ff;
background: #e6f7ff; background: #e6f7ff;
border-color: #bae7ff; border-color: #91d5ff;
} }
.ant-tag-blue-inverse { .ant-tag-blue-inverse {
background: #1890ff; background: #1890ff;
border-color: #1890ff; border-color: #1890ff;
color: #fff; color: #fff;
} }
.ant-tag-geekblue {
color: #2f54eb;
background: #f0f5ff;
border-color: #adc6ff;
}
.ant-tag-geekblue-inverse {
background: #2f54eb;
border-color: #2f54eb;
color: #fff;
}
.ant-tag-purple { .ant-tag-purple {
color: #722ed1; color: #722ed1;
background: #f9f0ff; background: #f9f0ff;
border-color: #efdbff; border-color: #d3adf7;
} }
.ant-tag-purple-inverse { .ant-tag-purple-inverse {
background: #722ed1; background: #722ed1;
...@@ -5269,7 +5509,7 @@ body { ...@@ -5269,7 +5509,7 @@ body {
} }
.ant-tooltip-inner { .ant-tooltip-inner {
max-width: 250px; max-width: 250px;
padding: 6px 10px; padding: 6px 8px;
color: #fff; color: #fff;
text-align: left; text-align: left;
text-decoration: none; text-decoration: none;
...@@ -5368,7 +5608,7 @@ body { ...@@ -5368,7 +5608,7 @@ body {
-webkit-box-flex: 1; -webkit-box-flex: 1;
-ms-flex: auto; -ms-flex: auto;
flex: auto; flex: auto;
background: #f5f5f5; background: #f0f2f5;
} }
.ant-layout, .ant-layout,
.ant-layout * { .ant-layout * {
...@@ -5398,7 +5638,7 @@ body { ...@@ -5398,7 +5638,7 @@ body {
line-height: 64px; line-height: 64px;
} }
.ant-layout-footer { .ant-layout-footer {
background: #f5f5f5; background: #f0f2f5;
padding: 24px 50px; padding: 24px 50px;
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
font-size: 14px; font-size: 14px;
...@@ -5469,7 +5709,7 @@ body { ...@@ -5469,7 +5709,7 @@ body {
/* stylelint-disable declaration-bang-space-before */ /* stylelint-disable declaration-bang-space-before */
/* stylelint-disable declaration-bang-space-before */ /* stylelint-disable declaration-bang-space-before */
.header___PfVin { .header___PfVin {
padding: 0 16px 0 0; padding: 0 12px 0 0;
background: #fff; background: #fff;
-webkit-box-shadow: 0 1px 4px rgba(0, 21, 41, 0.12); -webkit-box-shadow: 0 1px 4px rgba(0, 21, 41, 0.12);
box-shadow: 0 1px 4px rgba(0, 21, 41, 0.12); box-shadow: 0 1px 4px rgba(0, 21, 41, 0.12);
...@@ -5495,7 +5735,7 @@ body { ...@@ -5495,7 +5735,7 @@ body {
color: #fff; color: #fff;
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
font-size: 22px; font-size: 18px;
margin-left: 12px; margin-left: 12px;
font-family: Lato, 'Helvetica Neue', Arial, Helvetica, sans-serif; font-family: Lato, 'Helvetica Neue', Arial, Helvetica, sans-serif;
margin-top: -2px; margin-top: -2px;
...@@ -5513,7 +5753,7 @@ body { ...@@ -5513,7 +5753,7 @@ body {
-webkit-transition: all .3s; -webkit-transition: all .3s;
-o-transition: all .3s; -o-transition: all .3s;
transition: all .3s; transition: all .3s;
padding: 0 28px; padding: 0 24px;
} }
.trigger___yPNRl:hover { .trigger___yPNRl:hover {
background: rgba(0, 0, 0, 0.04); background: rgba(0, 0, 0, 0.04);
...@@ -5556,9 +5796,7 @@ body { ...@@ -5556,9 +5796,7 @@ body {
margin-right: 8px; margin-right: 8px;
} }
.menu___2UuXQ .ant-dropdown-menu-item { .menu___2UuXQ .ant-dropdown-menu-item {
padding-left: 16px; width: 160px;
padding-right: 16px;
width: 190px;
} }
.ant-layout { .ant-layout {
overflow-x: hidden; overflow-x: hidden;
...@@ -5568,7 +5806,7 @@ body { ...@@ -5568,7 +5806,7 @@ body {
-webkit-box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35); -webkit-box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35); box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
position: relative; position: relative;
z-index: 1; z-index: 10;
} }
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable declaration-bang-space-before */ /* stylelint-disable declaration-bang-space-before */
...@@ -5613,6 +5851,7 @@ body { ...@@ -5613,6 +5851,7 @@ body {
background: transparent; background: transparent;
border-width: 1px; border-width: 1px;
line-height: 1.5; line-height: 1.5;
height: 32px;
} }
.ant-select-auto-complete.ant-select .ant-input:focus, .ant-select-auto-complete.ant-select .ant-input:focus,
.ant-select-auto-complete.ant-select .ant-input:hover { .ant-select-auto-complete.ant-select .ant-input:hover {
...@@ -5673,7 +5912,7 @@ body { ...@@ -5673,7 +5912,7 @@ body {
margin-top: -6px; margin-top: -6px;
color: rgba(0, 0, 0, 0.45); color: rgba(0, 0, 0, 0.45);
display: inline-block; display: inline-block;
font-size: 14px; font-size: 12px;
font-size: 9px \9; font-size: 9px \9;
-webkit-transform: scale(0.75) rotate(0deg); -webkit-transform: scale(0.75) rotate(0deg);
-ms-transform: scale(0.75) rotate(0deg); -ms-transform: scale(0.75) rotate(0deg);
...@@ -5960,7 +6199,7 @@ body { ...@@ -5960,7 +6199,7 @@ body {
} }
.ant-select-selection--multiple .ant-select-selection__choice { .ant-select-selection--multiple .ant-select-selection__choice {
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
background-color: #f5f5f5; background-color: #fafafa;
border: 1px solid #e8e8e8; border: 1px solid #e8e8e8;
border-radius: 2px; border-radius: 2px;
cursor: default; cursor: default;
...@@ -6004,9 +6243,8 @@ body { ...@@ -6004,9 +6243,8 @@ body {
-webkit-transition: all .3s; -webkit-transition: all .3s;
-o-transition: all .3s; -o-transition: all .3s;
transition: all .3s; transition: all .3s;
font-size: 12px;
display: inline-block; display: inline-block;
font-size: 14px; font-size: 12px;
font-size: 10px \9; font-size: 10px \9;
-webkit-transform: scale(0.83333333) rotate(0deg); -webkit-transform: scale(0.83333333) rotate(0deg);
-ms-transform: scale(0.83333333) rotate(0deg); -ms-transform: scale(0.83333333) rotate(0deg);
...@@ -6187,7 +6425,7 @@ body { ...@@ -6187,7 +6425,7 @@ body {
content: "\E632"; content: "\E632";
color: transparent; color: transparent;
display: inline-block; display: inline-block;
font-size: 14px; font-size: 12px;
font-size: 10px \9; font-size: 10px \9;
-webkit-transform: scale(0.83333333) rotate(0deg); -webkit-transform: scale(0.83333333) rotate(0deg);
-ms-transform: scale(0.83333333) rotate(0deg); -ms-transform: scale(0.83333333) rotate(0deg);
...@@ -6353,7 +6591,7 @@ textarea.ant-input { ...@@ -6353,7 +6591,7 @@ textarea.ant-input {
line-height: 1; line-height: 1;
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
text-align: center; text-align: center;
background-color: #eee; background-color: #fafafa;
border: 1px solid #d9d9d9; border: 1px solid #d9d9d9;
border-radius: 4px; border-radius: 4px;
position: relative; position: relative;
...@@ -6633,22 +6871,22 @@ textarea.ant-input { ...@@ -6633,22 +6871,22 @@ textarea.ant-input {
.ant-popover-placement-top, .ant-popover-placement-top,
.ant-popover-placement-topLeft, .ant-popover-placement-topLeft,
.ant-popover-placement-topRight { .ant-popover-placement-topRight {
padding-bottom: 8px; padding-bottom: 9px;
} }
.ant-popover-placement-right, .ant-popover-placement-right,
.ant-popover-placement-rightTop, .ant-popover-placement-rightTop,
.ant-popover-placement-rightBottom { .ant-popover-placement-rightBottom {
padding-left: 8px; padding-left: 9px;
} }
.ant-popover-placement-bottom, .ant-popover-placement-bottom,
.ant-popover-placement-bottomLeft, .ant-popover-placement-bottomLeft,
.ant-popover-placement-bottomRight { .ant-popover-placement-bottomRight {
padding-top: 8px; padding-top: 9px;
} }
.ant-popover-placement-left, .ant-popover-placement-left,
.ant-popover-placement-leftTop, .ant-popover-placement-leftTop,
.ant-popover-placement-leftBottom { .ant-popover-placement-leftBottom {
padding-right: 8px; padding-right: 9px;
} }
.ant-popover-inner { .ant-popover-inner {
background-color: #fff; background-color: #fff;
...@@ -6660,24 +6898,24 @@ textarea.ant-input { ...@@ -6660,24 +6898,24 @@ textarea.ant-input {
.ant-popover-title { .ant-popover-title {
min-width: 177px; min-width: 177px;
margin: 0; margin: 0;
padding: 8px 16px; padding: 5px 16px 4px;
min-height: 32px; min-height: 32px;
border-bottom: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8;
color: rgba(0, 0, 0, 0.85); color: rgba(0, 0, 0, 0.85);
font-weight: 500; font-weight: 500;
} }
.ant-popover-inner-content { .ant-popover-inner-content {
padding: 8px 16px; padding: 20px 16px;
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
} }
.ant-popover-message { .ant-popover-message {
padding: 8px 0 16px; padding: 0 0 16px;
font-size: 14px; font-size: 14px;
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
} }
.ant-popover-message > .anticon { .ant-popover-message > .anticon {
color: #faad14; color: #faad14;
line-height: 1.5; line-height: 1.6;
position: absolute; position: absolute;
} }
.ant-popover-message-title { .ant-popover-message-title {
...@@ -6685,7 +6923,6 @@ textarea.ant-input { ...@@ -6685,7 +6923,6 @@ textarea.ant-input {
} }
.ant-popover-buttons { .ant-popover-buttons {
text-align: right; text-align: right;
margin-bottom: 8px;
} }
.ant-popover-buttons button { .ant-popover-buttons button {
margin-left: 8px; margin-left: 8px;
...@@ -6700,10 +6937,10 @@ textarea.ant-input { ...@@ -6700,10 +6937,10 @@ textarea.ant-input {
border-style: solid; border-style: solid;
} }
.ant-popover-arrow { .ant-popover-arrow {
border-width: 5px; border-width: 6px;
} }
.ant-popover-arrow:after { .ant-popover-arrow:after {
border-width: 4px; border-width: 5px;
content: ""; content: "";
} }
.ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow, .ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow,
...@@ -6718,13 +6955,13 @@ textarea.ant-input { ...@@ -6718,13 +6955,13 @@ textarea.ant-input {
.ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow:after { .ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow:after {
content: " "; content: " ";
bottom: 1px; bottom: 1px;
margin-left: -4px; margin-left: -5px;
border-bottom-width: 0; border-bottom-width: 0;
border-top-color: #fff; border-top-color: #fff;
} }
.ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow { .ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow {
left: 50%; left: 50%;
margin-left: -5px; margin-left: -6px;
} }
.ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow { .ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow {
left: 16px; left: 16px;
...@@ -6744,13 +6981,13 @@ textarea.ant-input { ...@@ -6744,13 +6981,13 @@ textarea.ant-input {
.ant-popover-placement-rightBottom > .ant-popover-content > .ant-popover-arrow:after { .ant-popover-placement-rightBottom > .ant-popover-content > .ant-popover-arrow:after {
content: " "; content: " ";
left: 1px; left: 1px;
bottom: -4px; bottom: -5px;
border-left-width: 0; border-left-width: 0;
border-right-color: #fff; border-right-color: #fff;
} }
.ant-popover-placement-right > .ant-popover-content > .ant-popover-arrow { .ant-popover-placement-right > .ant-popover-content > .ant-popover-arrow {
top: 50%; top: 50%;
margin-top: -5px; margin-top: -6px;
} }
.ant-popover-placement-rightTop > .ant-popover-content > .ant-popover-arrow { .ant-popover-placement-rightTop > .ant-popover-content > .ant-popover-arrow {
top: 12px; top: 12px;
...@@ -6770,13 +7007,13 @@ textarea.ant-input { ...@@ -6770,13 +7007,13 @@ textarea.ant-input {
.ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow:after { .ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow:after {
content: " "; content: " ";
top: 1px; top: 1px;
margin-left: -4px; margin-left: -5px;
border-top-width: 0; border-top-width: 0;
border-bottom-color: #fff; border-bottom-color: #fff;
} }
.ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow { .ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow {
left: 50%; left: 50%;
margin-left: -5px; margin-left: -6px;
} }
.ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow { .ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow {
left: 16px; left: 16px;
...@@ -6798,11 +7035,11 @@ textarea.ant-input { ...@@ -6798,11 +7035,11 @@ textarea.ant-input {
right: 1px; right: 1px;
border-right-width: 0; border-right-width: 0;
border-left-color: #fff; border-left-color: #fff;
bottom: -4px; bottom: -5px;
} }
.ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow { .ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow {
top: 50%; top: 50%;
margin-top: -5px; margin-top: -6px;
} }
.ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow { .ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow {
top: 12px; top: 12px;
...@@ -6847,7 +7084,6 @@ textarea.ant-input { ...@@ -6847,7 +7084,6 @@ textarea.ant-input {
-webkit-transform-origin: -10% center; -webkit-transform-origin: -10% center;
-ms-transform-origin: -10% center; -ms-transform-origin: -10% center;
transform-origin: -10% center; transform-origin: -10% center;
font-family: tahoma;
-webkit-box-shadow: 0 0 0 1px #fff; -webkit-box-shadow: 0 0 0 1px #fff;
box-shadow: 0 0 0 1px #fff; box-shadow: 0 0 0 1px #fff;
} }
...@@ -6855,6 +7091,9 @@ textarea.ant-input { ...@@ -6855,6 +7091,9 @@ textarea.ant-input {
.ant-badge-count a:hover { .ant-badge-count a:hover {
color: #fff; color: #fff;
} }
.ant-badge-multiple-words {
padding: 0 8px;
}
.ant-badge-dot { .ant-badge-dot {
position: absolute; position: absolute;
-webkit-transform: translateX(-50%); -webkit-transform: translateX(-50%);
...@@ -6863,9 +7102,9 @@ textarea.ant-input { ...@@ -6863,9 +7102,9 @@ textarea.ant-input {
-webkit-transform-origin: 0 center; -webkit-transform-origin: 0 center;
-ms-transform-origin: 0 center; -ms-transform-origin: 0 center;
transform-origin: 0 center; transform-origin: 0 center;
top: -4px; top: -3px;
height: 8px; height: 6px;
width: 8px; width: 6px;
border-radius: 100%; border-radius: 100%;
background: #f5222d; background: #f5222d;
z-index: 10; z-index: 10;
...@@ -6886,340 +7125,139 @@ textarea.ant-input { ...@@ -6886,340 +7125,139 @@ textarea.ant-input {
top: -1px; top: -1px;
} }
.ant-badge-status-success { .ant-badge-status-success {
background-color: #52c41a; background-color: #52c41a;
}
.ant-badge-status-processing {
background-color: #1890ff;
position: relative;
}
.ant-badge-status-processing:after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50%;
border: 1px solid #1890ff;
content: '';
-webkit-animation: antStatusProcessing 1.2s infinite ease-in-out;
animation: antStatusProcessing 1.2s infinite ease-in-out;
}
.ant-badge-status-default {
background-color: #d9d9d9;
}
.ant-badge-status-error {
background-color: #f5222d;
}
.ant-badge-status-warning {
background-color: #faad14;
}
.ant-badge-status-text {
color: rgba(0, 0, 0, 0.65);
font-size: 14px;
margin-left: 8px;
}
.ant-badge-zoom-appear,
.ant-badge-zoom-enter {
-webkit-animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.ant-badge-zoom-leave {
-webkit-animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.ant-badge-not-a-wrapper .ant-badge-count {
top: auto;
display: block;
position: relative;
-webkit-transform: none !important;
-ms-transform: none !important;
transform: none !important;
}
@-webkit-keyframes antStatusProcessing {
0% {
-webkit-transform: scale(0.8);
transform: scale(0.8);
opacity: 0.5;
}
100% {
-webkit-transform: scale(2.4);
transform: scale(2.4);
opacity: 0;
}
}
@keyframes antStatusProcessing {
0% {
-webkit-transform: scale(0.8);
transform: scale(0.8);
opacity: 0.5;
}
100% {
-webkit-transform: scale(2.4);
transform: scale(2.4);
opacity: 0;
}
}
.ant-scroll-number {
overflow: hidden;
}
.ant-scroll-number-only {
display: inline-block;
-webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
height: 20px;
}
.ant-scroll-number-only > p {
height: 20px;
margin: 0;
}
@-webkit-keyframes antZoomBadgeIn {
0% {
opacity: 0;
-webkit-transform: scale(0) translateX(-50%);
transform: scale(0) translateX(-50%);
}
100% {
-webkit-transform: scale(1) translateX(-50%);
transform: scale(1) translateX(-50%);
}
}
@keyframes antZoomBadgeIn {
0% {
opacity: 0;
-webkit-transform: scale(0) translateX(-50%);
transform: scale(0) translateX(-50%);
}
100% {
-webkit-transform: scale(1) translateX(-50%);
transform: scale(1) translateX(-50%);
}
}
@-webkit-keyframes antZoomBadgeOut {
0% {
-webkit-transform: scale(1) translateX(-50%);
transform: scale(1) translateX(-50%);
}
100% {
opacity: 0;
-webkit-transform: scale(0) translateX(-50%);
transform: scale(0) translateX(-50%);
}
}
@keyframes antZoomBadgeOut {
0% {
-webkit-transform: scale(1) translateX(-50%);
transform: scale(1) translateX(-50%);
}
100% {
opacity: 0;
-webkit-transform: scale(0) translateX(-50%);
transform: scale(0) translateX(-50%);
}
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable declaration-bang-space-before */
/* stylelint-disable declaration-bang-space-before */
.ant-spin {
font-family: "Helvetica Neue For Number", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.5;
color: rgba(0, 0, 0, 0.65);
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
list-style: none;
color: #1890ff;
vertical-align: middle;
text-align: center;
opacity: 0;
position: absolute;
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
-o-transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
display: none;
}
.ant-spin-spinning {
opacity: 1;
position: static;
display: inline-block;
}
.ant-spin-nested-loading {
position: relative;
}
.ant-spin-nested-loading > div > .ant-spin {
position: absolute;
height: 100%;
max-height: 320px;
width: 100%;
z-index: 4;
}
.ant-spin-nested-loading > div > .ant-spin .ant-spin-dot {
position: absolute;
top: 50%;
left: 50%;
margin: -10px;
}
.ant-spin-nested-loading > div > .ant-spin .ant-spin-text {
position: absolute;
top: 50%;
width: 100%;
padding-top: 5px;
}
.ant-spin-nested-loading > div > .ant-spin.ant-spin-show-text .ant-spin-dot {
margin-top: -20px;
}
.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-dot {
margin: -7px;
}
.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-text {
padding-top: 2px;
}
.ant-spin-nested-loading > div > .ant-spin-sm.ant-spin-show-text .ant-spin-dot {
margin-top: -17px;
}
.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-dot {
margin: -16px;
}
.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-text {
padding-top: 11px;
}
.ant-spin-nested-loading > div > .ant-spin-lg.ant-spin-show-text .ant-spin-dot {
margin-top: -26px;
}
.ant-spin-container {
position: relative;
}
.ant-spin-blur {
overflow: hidden;
opacity: 0.7;
-webkit-filter: blur(0.5px);
filter: blur(0.5px);
/* autoprefixer: off */
filter: progid\:DXImageTransform\.Microsoft\.Blur(PixelRadius\=1, MakeShadow\=false);
/* autoprefixer: on */
-webkit-transform: translateZ(0);
}
.ant-spin-blur:after {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: #fff;
opacity: 0.3;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
z-index: 10;
}
.ant-spin-tip {
color: rgba(0, 0, 0, 0.45);
}
.ant-spin-dot {
position: relative;
display: inline-block;
width: 20px;
height: 20px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-animation: antRotate 1.2s infinite linear;
animation: antRotate 1.2s infinite linear;
}
.ant-spin-dot i {
width: 9px;
height: 9px;
border-radius: 100%;
background-color: #1890ff;
-webkit-transform: scale(0.75);
-ms-transform: scale(0.75);
transform: scale(0.75);
display: block;
position: absolute;
opacity: 0.3;
-webkit-animation: antSpinMove 1s infinite linear alternate;
animation: antSpinMove 1s infinite linear alternate;
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
transform-origin: 50% 50%;
} }
.ant-spin-dot i:nth-child(1) { .ant-badge-status-processing {
left: 0; background-color: #1890ff;
top: 0; position: relative;
} }
.ant-spin-dot i:nth-child(2) { .ant-badge-status-processing:after {
right: 0; position: absolute;
top: 0; top: 0;
-webkit-animation-delay: 0.4s; left: 0;
animation-delay: 0.4s; width: 100%;
height: 100%;
border-radius: 50%;
border: 1px solid #1890ff;
content: '';
-webkit-animation: antStatusProcessing 1.2s infinite ease-in-out;
animation: antStatusProcessing 1.2s infinite ease-in-out;
} }
.ant-spin-dot i:nth-child(3) { .ant-badge-status-default {
right: 0; background-color: #d9d9d9;
bottom: 0;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
} }
.ant-spin-dot i:nth-child(4) { .ant-badge-status-error {
left: 0; background-color: #f5222d;
bottom: 0;
-webkit-animation-delay: 1.2s;
animation-delay: 1.2s;
} }
.ant-spin-sm .ant-spin-dot { .ant-badge-status-warning {
width: 14px; background-color: #faad14;
height: 14px;
} }
.ant-spin-sm .ant-spin-dot i { .ant-badge-status-text {
width: 6px; color: rgba(0, 0, 0, 0.65);
height: 6px; font-size: 14px;
margin-left: 8px;
} }
.ant-spin-lg .ant-spin-dot { .ant-badge-zoom-appear,
width: 32px; .ant-badge-zoom-enter {
height: 32px; -webkit-animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
} }
.ant-spin-lg .ant-spin-dot i { .ant-badge-zoom-leave {
width: 14px; -webkit-animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
height: 14px; animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
} }
.ant-spin.ant-spin-show-text .ant-spin-text { .ant-badge-not-a-wrapper .ant-badge-count {
top: auto;
display: block; display: block;
position: relative;
-webkit-transform: none !important;
-ms-transform: none !important;
transform: none !important;
} }
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { @-webkit-keyframes antStatusProcessing {
/* IE10+ */ 0% {
.ant-spin-blur { -webkit-transform: scale(0.8);
background: #fff; transform: scale(0.8);
opacity: 0.5; opacity: 0.5;
} }
100% {
-webkit-transform: scale(2.4);
transform: scale(2.4);
opacity: 0;
}
} }
@-webkit-keyframes antSpinMove { @keyframes antStatusProcessing {
to { 0% {
opacity: 1; -webkit-transform: scale(0.8);
transform: scale(0.8);
opacity: 0.5;
}
100% {
-webkit-transform: scale(2.4);
transform: scale(2.4);
opacity: 0;
} }
} }
@keyframes antSpinMove { .ant-scroll-number {
to { overflow: hidden;
opacity: 1; }
.ant-scroll-number-only {
display: inline-block;
-webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
height: 20px;
}
.ant-scroll-number-only > p {
height: 20px;
margin: 0;
}
@-webkit-keyframes antZoomBadgeIn {
0% {
opacity: 0;
-webkit-transform: scale(0) translateX(-50%);
transform: scale(0) translateX(-50%);
}
100% {
-webkit-transform: scale(1) translateX(-50%);
transform: scale(1) translateX(-50%);
} }
} }
@-webkit-keyframes antRotate { @keyframes antZoomBadgeIn {
to { 0% {
-webkit-transform: rotate(405deg); opacity: 0;
transform: rotate(405deg); -webkit-transform: scale(0) translateX(-50%);
transform: scale(0) translateX(-50%);
}
100% {
-webkit-transform: scale(1) translateX(-50%);
transform: scale(1) translateX(-50%);
} }
} }
@keyframes antRotate { @-webkit-keyframes antZoomBadgeOut {
to { 0% {
-webkit-transform: rotate(405deg); -webkit-transform: scale(1) translateX(-50%);
transform: rotate(405deg); transform: scale(1) translateX(-50%);
}
100% {
opacity: 0;
-webkit-transform: scale(0) translateX(-50%);
transform: scale(0) translateX(-50%);
}
}
@keyframes antZoomBadgeOut {
0% {
-webkit-transform: scale(1) translateX(-50%);
transform: scale(1) translateX(-50%);
}
100% {
opacity: 0;
-webkit-transform: scale(0) translateX(-50%);
transform: scale(0) translateX(-50%);
} }
} }
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
...@@ -7300,22 +7338,14 @@ textarea.ant-input { ...@@ -7300,22 +7338,14 @@ textarea.ant-input {
line-height: 20px; line-height: 20px;
text-align: center; text-align: center;
cursor: pointer; cursor: pointer;
border-radius: 4px; border-radius: 2px;
border: 1px solid #d9d9d9; border: 1px solid #d9d9d9;
display: inline-block; font-size: 12px;
font-size: 14px; color: rgba(0, 0, 0, 0.65);
font-size: 10px \9;
-webkit-transform: scale(0.83333333) rotate(0deg);
-ms-transform: scale(0.83333333) rotate(0deg);
transform: scale(0.83333333) rotate(0deg);
color: rgba(0, 0, 0, 0.45);
-webkit-transition: all .3s; -webkit-transition: all .3s;
-o-transition: all .3s; -o-transition: all .3s;
transition: all .3s; transition: all .3s;
} }
:root .ant-tabs-extra-content .ant-tabs-new-tab {
font-size: 14px;
}
.ant-tabs-extra-content .ant-tabs-new-tab:hover { .ant-tabs-extra-content .ant-tabs-new-tab:hover {
color: #1890ff; color: #1890ff;
border-color: #1890ff; border-color: #1890ff;
...@@ -7488,7 +7518,7 @@ textarea.ant-input { ...@@ -7488,7 +7518,7 @@ textarea.ant-input {
display: block; display: block;
font-family: "anticon" !important; font-family: "anticon" !important;
display: inline-block; display: inline-block;
font-size: 14px; font-size: 12px;
font-size: 10px \9; font-size: 10px \9;
-webkit-transform: scale(0.83333333) rotate(0deg); -webkit-transform: scale(0.83333333) rotate(0deg);
-ms-transform: scale(0.83333333) rotate(0deg); -ms-transform: scale(0.83333333) rotate(0deg);
...@@ -7563,7 +7593,7 @@ textarea.ant-input { ...@@ -7563,7 +7593,7 @@ textarea.ant-input {
-webkit-box-sizing: border-box; -webkit-box-sizing: border-box;
box-sizing: border-box; box-sizing: border-box;
position: relative; position: relative;
padding: 12px 20px; padding: 12px 16px;
-webkit-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); -webkit-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); -o-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
...@@ -7585,10 +7615,16 @@ textarea.ant-input { ...@@ -7585,10 +7615,16 @@ textarea.ant-input {
.ant-tabs-nav .ant-tabs-tab-active { .ant-tabs-nav .ant-tabs-tab-active {
color: #1890ff; color: #1890ff;
} }
.ant-tabs-mini .ant-tabs-nav-container { .ant-tabs-large .ant-tabs-nav-container {
font-size: 16px;
}
.ant-tabs-large .ant-tabs-tab {
padding: 16px;
}
.ant-tabs-small .ant-tabs-nav-container {
font-size: 14px; font-size: 14px;
} }
.ant-tabs-mini .ant-tabs-tab { .ant-tabs-small .ant-tabs-tab {
padding: 8px 16px; padding: 8px 16px;
} }
.ant-tabs:not(.ant-tabs-vertical) > .ant-tabs-content { .ant-tabs:not(.ant-tabs-vertical) > .ant-tabs-content {
...@@ -7791,7 +7827,7 @@ textarea.ant-input { ...@@ -7791,7 +7827,7 @@ textarea.ant-input {
outline: none; outline: none;
} }
.ant-list-pagination { .ant-list-pagination {
margin-top: 12px; margin-top: 24px;
text-align: right; text-align: right;
} }
.ant-list-more { .ant-list-more {
...@@ -8154,7 +8190,7 @@ textarea.ant-input { ...@@ -8154,7 +8190,7 @@ textarea.ant-input {
.ant-pagination-jump-next:hover:after { .ant-pagination-jump-next:hover:after {
color: #1890ff; color: #1890ff;
display: inline-block; display: inline-block;
font-size: 14px; font-size: 12px;
font-size: 8px \9; font-size: 8px \9;
-webkit-transform: scale(0.66666667) rotate(0deg); -webkit-transform: scale(0.66666667) rotate(0deg);
-ms-transform: scale(0.66666667) rotate(0deg); -ms-transform: scale(0.66666667) rotate(0deg);
...@@ -12630,7 +12666,7 @@ span.ant-radio + * { ...@@ -12630,7 +12666,7 @@ span.ant-radio + * {
.ant-table-thead > tr > th .anticon-filter, .ant-table-thead > tr > th .anticon-filter,
.ant-table-thead > tr > th .ant-table-filter-icon { .ant-table-thead > tr > th .ant-table-filter-icon {
position: relative; position: relative;
margin-left: 4px; margin-left: 8px;
font-size: 14px; font-size: 14px;
cursor: pointer; cursor: pointer;
color: rgba(0, 0, 0, 0.45); color: rgba(0, 0, 0, 0.45);
...@@ -12653,6 +12689,9 @@ span.ant-radio + * { ...@@ -12653,6 +12689,9 @@ span.ant-radio + * {
left: 0; left: 0;
top: -19px; top: -19px;
} }
.ant-table-thead > tr > th .ant-table-column-sorter + .anticon-filter {
margin-left: 4px;
}
.ant-table-thead > tr > th .ant-table-filter-selected.anticon-filter { .ant-table-thead > tr > th .ant-table-filter-selected.anticon-filter {
color: #1890ff; color: #1890ff;
} }
...@@ -12678,7 +12717,7 @@ span.ant-radio + * { ...@@ -12678,7 +12717,7 @@ span.ant-radio + * {
background: none; background: none;
} }
.ant-table-footer { .ant-table-footer {
padding: 16px 8px; padding: 16px 16px;
background: #fafafa; background: #fafafa;
border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px;
position: relative; position: relative;
...@@ -12704,8 +12743,8 @@ span.ant-radio + * { ...@@ -12704,8 +12743,8 @@ span.ant-radio + * {
} }
.ant-table.ant-table-bordered .ant-table-title { .ant-table.ant-table-bordered .ant-table-title {
border: 1px solid #e8e8e8; border: 1px solid #e8e8e8;
padding-left: 8px; padding-left: 16px;
padding-right: 8px; padding-right: 16px;
} }
.ant-table-title + .ant-table-content { .ant-table-title + .ant-table-content {
position: relative; position: relative;
...@@ -12725,7 +12764,7 @@ span.ant-radio + * { ...@@ -12725,7 +12764,7 @@ span.ant-radio + * {
} }
.ant-table-thead > tr > th, .ant-table-thead > tr > th,
.ant-table-tbody > tr > td { .ant-table-tbody > tr > td {
padding: 16px 8px; padding: 16px 16px;
word-break: break-all; word-break: break-all;
} }
.ant-table-thead > tr > th.ant-table-selection-column-custom { .ant-table-thead > tr > th.ant-table-selection-column-custom {
...@@ -12840,7 +12879,7 @@ span.ant-radio + * { ...@@ -12840,7 +12879,7 @@ span.ant-radio + * {
} }
.ant-table-column-sorter { .ant-table-column-sorter {
position: relative; position: relative;
margin-left: 4px; margin-left: 8px;
display: inline-block; display: inline-block;
width: 14px; width: 14px;
vertical-align: middle; vertical-align: middle;
...@@ -12883,7 +12922,7 @@ span.ant-radio + * { ...@@ -12883,7 +12922,7 @@ span.ant-radio + * {
.ant-table-column-sorter .anticon-caret-up, .ant-table-column-sorter .anticon-caret-up,
.ant-table-column-sorter .anticon-caret-down { .ant-table-column-sorter .anticon-caret-down {
display: inline-block; display: inline-block;
font-size: 14px; font-size: 12px;
font-size: 8px \9; font-size: 8px \9;
-webkit-transform: scale(0.66666667) rotate(0deg); -webkit-transform: scale(0.66666667) rotate(0deg);
-ms-transform: scale(0.66666667) rotate(0deg); -ms-transform: scale(0.66666667) rotate(0deg);
...@@ -12960,7 +12999,7 @@ span.ant-radio + * { ...@@ -12960,7 +12999,7 @@ span.ant-radio + * {
} }
.ant-table-placeholder { .ant-table-placeholder {
position: relative; position: relative;
padding: 16px 8px; padding: 16px 16px;
background: #fff; background: #fff;
border-bottom: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8;
text-align: center; text-align: center;
...@@ -13389,6 +13428,13 @@ tr.ant-table-expanded-row:hover { ...@@ -13389,6 +13428,13 @@ tr.ant-table-expanded-row:hover {
} }
.ant-checkbox-group-item { .ant-checkbox-group-item {
display: inline-block; display: inline-block;
margin-right: 8px;
}
.ant-checkbox-group-item:last-child {
margin-right: 0;
}
.ant-checkbox-group-item + .ant-checkbox-group-item {
margin-left: 0;
} }
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable declaration-bang-space-before */ /* stylelint-disable declaration-bang-space-before */
...@@ -13416,7 +13462,7 @@ tr.ant-table-expanded-row:hover { ...@@ -13416,7 +13462,7 @@ tr.ant-table-expanded-row:hover {
.ant-card-hoverable:hover { .ant-card-hoverable:hover {
-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09); -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
border-color: transparent; border-color: rgba(0, 0, 0, 0.09);
} }
.ant-card-bordered { .ant-card-bordered {
border: 1px solid #e8e8e8; border: 1px solid #e8e8e8;
...@@ -13475,7 +13521,7 @@ tr.ant-table-expanded-row:hover { ...@@ -13475,7 +13521,7 @@ tr.ant-table-expanded-row:hover {
margin-left: auto; margin-left: auto;
} }
.ant-card-body { .ant-card-body {
padding: 20px 24px; padding: 24px;
zoom: 1; zoom: 1;
} }
.ant-card-body:before, .ant-card-body:before,
...@@ -13504,7 +13550,7 @@ tr.ant-table-expanded-row:hover { ...@@ -13504,7 +13550,7 @@ tr.ant-table-expanded-row:hover {
} }
.ant-card-loading-block { .ant-card-loading-block {
display: inline-block; display: inline-block;
margin: 5px 1% 0; margin: 5px 2% 0 0;
height: 14px; height: 14px;
border-radius: 2px; border-radius: 2px;
background: -webkit-gradient(linear, left top, right top, from(rgba(207, 216, 220, 0.2)), color-stop(rgba(207, 216, 220, 0.4)), to(rgba(207, 216, 220, 0.2))); background: -webkit-gradient(linear, left top, right top, from(rgba(207, 216, 220, 0.2)), color-stop(rgba(207, 216, 220, 0.4)), to(rgba(207, 216, 220, 0.2)));
...@@ -13550,7 +13596,7 @@ tr.ant-table-expanded-row:hover { ...@@ -13550,7 +13596,7 @@ tr.ant-table-expanded-row:hover {
} }
.ant-card-actions { .ant-card-actions {
border-top: 1px solid #e8e8e8; border-top: 1px solid #e8e8e8;
background: #f5f5f5; background: #f7f9fa;
zoom: 1; zoom: 1;
list-style: none; list-style: none;
margin: 0; margin: 0;
...@@ -13625,6 +13671,7 @@ tr.ant-table-expanded-row:hover { ...@@ -13625,6 +13671,7 @@ tr.ant-table-expanded-row:hover {
} }
.ant-card-type-inner .ant-card-head-title { .ant-card-type-inner .ant-card-head-title {
padding: 12px 0; padding: 12px 0;
font-size: 14px;
} }
.ant-card-type-inner .ant-card-body { .ant-card-type-inner .ant-card-body {
padding: 16px 24px; padding: 16px 24px;
...@@ -13776,13 +13823,13 @@ tr.ant-table-expanded-row:hover { ...@@ -13776,13 +13823,13 @@ tr.ant-table-expanded-row:hover {
pointer-events: auto; pointer-events: auto;
} }
.ant-calendar-picker-icon { .ant-calendar-picker-icon {
color: rgba(0, 0, 0, 0.45); color: rgba(0, 0, 0, 0.25);
} }
.ant-calendar-picker-icon:after { .ant-calendar-picker-icon:after {
content: "\E6BB"; content: "\E6BB";
font-family: "anticon"; font-family: "anticon";
font-size: 14px; font-size: 14px;
color: rgba(0, 0, 0, 0.45); color: rgba(0, 0, 0, 0.25);
display: inline-block; display: inline-block;
line-height: 1; line-height: 1;
} }
...@@ -15189,9 +15236,8 @@ li.ant-calendar-time-picker-select-option-disabled:hover { ...@@ -15189,9 +15236,8 @@ li.ant-calendar-time-picker-select-option-disabled:hover {
-webkit-box-sizing: border-box; -webkit-box-sizing: border-box;
box-sizing: border-box; box-sizing: border-box;
position: relative; position: relative;
padding: 7px 12px; padding: 7px 9px 7px 12px;
border-bottom: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8;
max-width: 168px;
} }
.ant-time-picker-panel-input-invalid { .ant-time-picker-panel-input-invalid {
border-color: red; border-color: red;
...@@ -15258,7 +15304,7 @@ li.ant-calendar-time-picker-select-option-disabled:hover { ...@@ -15258,7 +15304,7 @@ li.ant-calendar-time-picker-select-option-disabled:hover {
-webkit-box-sizing: border-box; -webkit-box-sizing: border-box;
box-sizing: border-box; box-sizing: border-box;
margin: 0; margin: 0;
padding: 0 0 120px; padding: 0 0 160px;
width: 100%; width: 100%;
} }
.ant-time-picker-panel-select li { .ant-time-picker-panel-select li {
...@@ -15443,14 +15489,14 @@ textarea.ant-time-picker-input { ...@@ -15443,14 +15489,14 @@ textarea.ant-time-picker-input {
height: 14px; height: 14px;
line-height: 14px; line-height: 14px;
right: 11px; right: 11px;
color: rgba(0, 0, 0, 0.45); color: rgba(0, 0, 0, 0.25);
top: 50%; top: 50%;
margin-top: -7px; margin-top: -7px;
} }
.ant-time-picker-icon:after { .ant-time-picker-icon:after {
content: "\E641"; content: "\E641";
font-family: "anticon"; font-family: "anticon";
color: rgba(0, 0, 0, 0.45); color: rgba(0, 0, 0, 0.25);
display: block; display: block;
line-height: 1; line-height: 1;
} }
...@@ -16689,8 +16735,8 @@ textarea.ant-time-picker-input { ...@@ -16689,8 +16735,8 @@ textarea.ant-time-picker-input {
height: 0; height: 0;
} }
.ant-confirm-body .ant-confirm-title { .ant-confirm-body .ant-confirm-title {
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.85);
font-weight: bold; font-weight: 500;
font-size: 16px; font-size: 16px;
} }
.ant-confirm-body .ant-confirm-content { .ant-confirm-body .ant-confirm-content {
...@@ -16840,7 +16886,7 @@ textarea.ant-input-number { ...@@ -16840,7 +16886,7 @@ textarea.ant-input-number {
-o-transition: all 0.1s linear; -o-transition: all 0.1s linear;
transition: all 0.1s linear; transition: all 0.1s linear;
display: inline-block; display: inline-block;
font-size: 14px; font-size: 12px;
font-size: 7px \9; font-size: 7px \9;
-webkit-transform: scale(0.58333333) rotate(0deg); -webkit-transform: scale(0.58333333) rotate(0deg);
-ms-transform: scale(0.58333333) rotate(0deg); -ms-transform: scale(0.58333333) rotate(0deg);
...@@ -17748,21 +17794,20 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -17748,21 +17794,20 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
padding: 0; padding: 0;
list-style: none; list-style: none;
position: relative; position: relative;
padding: 8px 16px 8px 38px; padding: 8px 15px 8px 37px;
border-radius: 4px; border-radius: 4px;
} }
.ant-alert.ant-alert-no-icon { .ant-alert.ant-alert-no-icon {
padding: 8px 16px; padding: 8px 15px;
} }
.ant-alert-icon { .ant-alert-icon {
font-size: 16px; top: 12.5px;
top: 10.5px;
left: 16px; left: 16px;
position: absolute; position: absolute;
} }
.ant-alert-description { .ant-alert-description {
font-size: 14px; font-size: 14px;
line-height: 21px; line-height: 22px;
display: none; display: none;
} }
.ant-alert-success { .ant-alert-success {
...@@ -17780,8 +17825,8 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -17780,8 +17825,8 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
color: #1890ff; color: #1890ff;
} }
.ant-alert-warning { .ant-alert-warning {
border: 1px solid #fffb8f; border: 1px solid #ffe58f;
background-color: #feffe6; background-color: #fffbe6;
} }
.ant-alert-warning .ant-alert-icon { .ant-alert-warning .ant-alert-icon {
color: #faad14; color: #faad14;
...@@ -17816,14 +17861,14 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -17816,14 +17861,14 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
right: 16px; right: 16px;
} }
.ant-alert-with-description { .ant-alert-with-description {
padding: 16px 16px 16px 64px; padding: 15px 15px 15px 64px;
position: relative; position: relative;
border-radius: 4px; border-radius: 4px;
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
line-height: 1.5; line-height: 1.5;
} }
.ant-alert-with-description.ant-alert-no-icon { .ant-alert-with-description.ant-alert-no-icon {
padding: 16px; padding: 15px;
} }
.ant-alert-with-description .ant-alert-icon { .ant-alert-with-description .ant-alert-icon {
position: absolute; position: absolute;
...@@ -17985,7 +18030,7 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -17985,7 +18030,7 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
} }
.standardFormRow___IrCqN .ant-form-item-label label { .standardFormRow___IrCqN .ant-form-item-label label {
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
margin-right: 16px; margin-right: 0;
} }
.standardFormRow___IrCqN .label___2BYJR { .standardFormRow___IrCqN .label___2BYJR {
color: rgba(0, 0, 0, 0.85); color: rgba(0, 0, 0, 0.85);
...@@ -18039,6 +18084,10 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -18039,6 +18084,10 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
margin-left: -8px; margin-left: -8px;
position: relative; position: relative;
} }
.tagSelect___99en7 .ant-tag {
padding: 0 8px;
margin-right: 24px;
}
.tagSelect___99en7 .expand___UD0u0 { .tagSelect___99en7 .expand___UD0u0 {
-webkit-transition: all 0.32s ease; -webkit-transition: all 0.32s ease;
-o-transition: all 0.32s ease; -o-transition: all 0.32s ease;
...@@ -18059,6 +18108,9 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -18059,6 +18108,9 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
top: 0; top: 0;
right: 0; right: 0;
} }
.tagSelect___99en7 .trigger___3m4OP i {
font-size: 12px;
}
.expandTag___ZGT6L { .expandTag___ZGT6L {
padding-right: 50px; padding-right: 50px;
} }
...@@ -18143,7 +18195,7 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -18143,7 +18195,7 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
border-color: #d9d9d9; border-color: #d9d9d9;
color: rgba(0, 0, 0, 0.45); color: rgba(0, 0, 0, 0.45);
width: 100%; width: 100%;
height: 178px; height: 185px;
} }
.cardDescription___IW8Xv { .cardDescription___IW8Xv {
overflow: hidden; overflow: hidden;
...@@ -18214,9 +18266,12 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -18214,9 +18266,12 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
.filterCardList___1un-F .ant-card-meta-content { .filterCardList___1un-F .ant-card-meta-content {
margin-top: 0; margin-top: 0;
} }
.filterCardList___1un-F .ant-card-meta-avatar {
font-size: 0;
}
.filterCardList___1un-F .cardInfo___3rT0N { .filterCardList___1un-F .cardInfo___3rT0N {
zoom: 1; zoom: 1;
margin-top: 12px; margin-top: 16px;
margin-left: 40px; margin-left: 40px;
} }
.filterCardList___1un-F .cardInfo___3rT0N:before, .filterCardList___1un-F .cardInfo___3rT0N:before,
...@@ -18237,7 +18292,7 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -18237,7 +18292,7 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
width: 50%; width: 50%;
} }
.filterCardList___1un-F .cardInfo___3rT0N > div p { .filterCardList___1un-F .cardInfo___3rT0N > div p {
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.45);
line-height: 32px; line-height: 32px;
font-size: 24px; font-size: 24px;
} }
...@@ -18725,7 +18780,7 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -18725,7 +18780,7 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
font-size: 16px; font-size: 16px;
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
display: inline-block; display: inline-block;
padding-right: 10px; padding-right: 16px;
position: relative; position: relative;
line-height: 32px; line-height: 32px;
} }
...@@ -18813,7 +18868,7 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -18813,7 +18868,7 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
background-color: #1890ff; background-color: #1890ff;
} }
.ant-steps-item-finish > .ant-steps-item-content > .ant-steps-item-description { .ant-steps-item-finish > .ant-steps-item-content > .ant-steps-item-description {
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.45);
} }
.ant-steps-item-finish > .ant-steps-item-tail:after { .ant-steps-item-finish > .ant-steps-item-tail:after {
background-color: #1890ff; background-color: #1890ff;
...@@ -18844,12 +18899,15 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -18844,12 +18899,15 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
background: #f5222d; background: #f5222d;
} }
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item { .ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
margin-right: 8px; margin-right: 16px;
white-space: nowrap; white-space: nowrap;
} }
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child { .ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child {
margin-right: 0; margin-right: 0;
} }
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child .ant-steps-item-title {
padding-right: 0;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-tail { .ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-tail {
display: none; display: none;
} }
...@@ -18863,7 +18921,8 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -18863,7 +18921,8 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
height: auto; height: auto;
} }
.ant-steps-item-custom .ant-steps-item-icon > .ant-steps-icon { .ant-steps-item-custom .ant-steps-item-icon > .ant-steps-icon {
font-size: 32px; font-size: 24px;
line-height: 32px;
top: 1px; top: 1px;
left: 0.5px; left: 0.5px;
width: 32px; width: 32px;
...@@ -18872,6 +18931,12 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -18872,6 +18931,12 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
.ant-steps-item-custom.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon { .ant-steps-item-custom.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
color: #1890ff; color: #1890ff;
} }
.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
margin-right: 12px;
}
.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child {
margin-right: 0;
}
.ant-steps-small .ant-steps-item-icon { .ant-steps-small .ant-steps-item-icon {
width: 24px; width: 24px;
height: 24px; height: 24px;
...@@ -18879,11 +18944,11 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -18879,11 +18944,11 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
text-align: center; text-align: center;
border-radius: 24px; border-radius: 24px;
font-size: 12px; font-size: 12px;
margin-right: 8px;
} }
.ant-steps-small .ant-steps-item-title { .ant-steps-small .ant-steps-item-title {
font-size: 14px; font-size: 14px;
line-height: 24px; line-height: 24px;
padding-right: 12px;
} }
.ant-steps-small .ant-steps-item-title:after { .ant-steps-small .ant-steps-item-title:after {
top: 12px; top: 12px;
...@@ -18905,8 +18970,8 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -18905,8 +18970,8 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
background: none; background: none;
} }
.ant-steps-small .ant-steps-item-custom .ant-steps-item-icon > .ant-steps-icon { .ant-steps-small .ant-steps-item-custom .ant-steps-item-icon > .ant-steps-icon {
font-size: 32px; font-size: 24px;
top: -2.5px; line-height: 24px;
-webkit-transform: none; -webkit-transform: none;
-ms-transform: none; -ms-transform: none;
transform: none; transform: none;
...@@ -18920,8 +18985,6 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -18920,8 +18985,6 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
} }
.ant-steps-vertical .ant-steps-item-icon { .ant-steps-vertical .ant-steps-item-icon {
float: left; float: left;
}
.ant-steps-vertical .ant-steps-item-icon-inner {
margin-right: 16px; margin-right: 16px;
} }
.ant-steps-vertical .ant-steps-item-content { .ant-steps-vertical .ant-steps-item-content {
...@@ -18972,8 +19035,6 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -18972,8 +19035,6 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
} }
.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon { .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
float: left; float: left;
}
.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon-inner {
margin-right: 16px; margin-right: 16px;
} }
.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-content { .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-content {
...@@ -19387,8 +19448,8 @@ form .ant-input-group-addon .ant-cascader-picker:only-child { ...@@ -19387,8 +19448,8 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
margin-bottom: 24px; margin-bottom: 24px;
} }
.result___Hm4g7 .extra___2XdYc { .result___Hm4g7 .extra___2XdYc {
background: rgba(245, 245, 245, 0.5); background: #fafafa;
padding: 16px 40px; padding: 24px 40px;
margin-top: 24px; margin-top: 24px;
border-radius: 2px; border-radius: 2px;
text-align: left; text-align: left;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment