2016-04-27 20:44:36 +08:00
|
|
|
@import "../../style/themes/default";
|
2017-09-22 18:33:29 +08:00
|
|
|
@import "../../style/mixins/index";
|
2016-04-27 20:44:36 +08:00
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
@badge-prefix-cls: ~"@{ant-prefix}-badge";
|
|
|
|
@number-prefix-cls: ~"@{ant-prefix}-scroll-number";
|
2015-09-01 13:59:07 +08:00
|
|
|
|
|
|
|
.@{badge-prefix-cls} {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
2015-09-01 13:59:07 +08:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
2015-09-18 17:24:14 +08:00
|
|
|
line-height: 1;
|
2016-03-09 11:50:02 +08:00
|
|
|
vertical-align: middle;
|
2015-09-01 13:59:07 +08:00
|
|
|
|
|
|
|
&-count {
|
|
|
|
position: absolute;
|
|
|
|
transform: translateX(-50%);
|
2017-02-03 14:20:42 +08:00
|
|
|
top: -@badge-height / 2;
|
|
|
|
height: @badge-height;
|
|
|
|
border-radius: @badge-height / 2;
|
|
|
|
min-width: @badge-height;
|
2016-11-09 21:30:02 +08:00
|
|
|
background: @highlight-color;
|
2015-09-01 13:59:07 +08:00
|
|
|
color: #fff;
|
2017-02-03 14:20:42 +08:00
|
|
|
line-height: @badge-height;
|
2015-09-01 13:59:07 +08:00
|
|
|
text-align: center;
|
2015-12-18 17:27:22 +08:00
|
|
|
padding: 0 6px;
|
2017-07-12 17:32:31 +08:00
|
|
|
font-size: @badge-font-size;
|
2015-09-01 13:59:07 +08:00
|
|
|
white-space: nowrap;
|
2015-11-18 23:42:01 +08:00
|
|
|
transform-origin: -10% center;
|
2017-09-27 22:32:49 +08:00
|
|
|
box-shadow: 0 0 0 1px #fff;
|
2015-11-26 19:32:55 +08:00
|
|
|
a,
|
|
|
|
a:hover {
|
2015-09-01 13:59:07 +08:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-18 17:19:42 +08:00
|
|
|
&-multiple-words {
|
|
|
|
padding: 0 8px;
|
|
|
|
}
|
|
|
|
|
2015-09-01 13:59:07 +08:00
|
|
|
&-dot {
|
|
|
|
position: absolute;
|
2015-11-18 23:42:01 +08:00
|
|
|
transform: translateX(-50%);
|
2017-02-06 12:04:35 +08:00
|
|
|
transform-origin: 0 center;
|
2017-02-03 14:20:42 +08:00
|
|
|
top: -@badge-dot-size / 2;
|
|
|
|
height: @badge-dot-size;
|
|
|
|
width: @badge-dot-size;
|
2015-09-01 13:59:07 +08:00
|
|
|
border-radius: 100%;
|
2016-11-09 21:30:02 +08:00
|
|
|
background: @highlight-color;
|
2015-09-01 13:59:07 +08:00
|
|
|
z-index: 10;
|
2015-09-01 17:26:06 +08:00
|
|
|
box-shadow: 0 0 0 1px #fff;
|
2015-09-01 13:59:07 +08:00
|
|
|
}
|
2015-11-19 00:13:16 +08:00
|
|
|
|
2016-08-20 17:43:46 +08:00
|
|
|
&-status {
|
2016-10-12 19:42:10 +08:00
|
|
|
line-height: inherit;
|
|
|
|
vertical-align: baseline;
|
2016-08-20 17:43:46 +08:00
|
|
|
|
2016-10-12 19:42:10 +08:00
|
|
|
&-dot {
|
2017-09-27 22:32:49 +08:00
|
|
|
width: @badge-status-size;
|
|
|
|
height: @badge-status-size;
|
2016-10-12 19:42:10 +08:00
|
|
|
display: inline-block;
|
|
|
|
border-radius: 50%;
|
2017-09-27 22:32:49 +08:00
|
|
|
vertical-align: middle;
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
2016-10-12 19:42:10 +08:00
|
|
|
}
|
2016-08-20 17:43:46 +08:00
|
|
|
&-success {
|
|
|
|
background-color: @success-color;
|
|
|
|
}
|
|
|
|
&-processing {
|
2017-11-11 14:15:16 +08:00
|
|
|
background-color: @processing-color;
|
2017-02-13 14:49:03 +08:00
|
|
|
position: relative;
|
|
|
|
&:after {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 50%;
|
2017-11-11 14:15:16 +08:00
|
|
|
border: 1px solid @processing-color;
|
2017-02-13 14:49:03 +08:00
|
|
|
content: '';
|
|
|
|
animation: antStatusProcessing 1.2s infinite ease-in-out;
|
|
|
|
}
|
2016-08-20 17:43:46 +08:00
|
|
|
}
|
|
|
|
&-default {
|
|
|
|
background-color: @normal-color;
|
|
|
|
}
|
|
|
|
&-error {
|
|
|
|
background-color: @error-color;
|
|
|
|
}
|
|
|
|
&-warning {
|
|
|
|
background-color: @warning-color;
|
|
|
|
}
|
|
|
|
&-text {
|
|
|
|
color: @text-color;
|
2017-08-08 14:23:50 +08:00
|
|
|
font-size: @font-size-base;
|
2016-10-12 19:42:10 +08:00
|
|
|
margin-left: 8px;
|
2016-08-20 17:43:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-19 00:13:16 +08:00
|
|
|
&-zoom-appear,
|
|
|
|
&-zoom-enter {
|
|
|
|
animation: antZoomBadgeIn .3s @ease-out-back;
|
|
|
|
animation-fill-mode: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-zoom-leave {
|
|
|
|
animation: antZoomBadgeOut .3s @ease-in-back;
|
|
|
|
animation-fill-mode: both;
|
|
|
|
}
|
2015-12-18 17:27:22 +08:00
|
|
|
|
2017-11-12 14:10:41 +08:00
|
|
|
&-not-a-wrapper .@{ant-prefix}-scroll-number {
|
2015-12-18 17:27:22 +08:00
|
|
|
top: auto;
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
2017-08-04 17:58:32 +08:00
|
|
|
transform: none !important;
|
2015-12-18 17:27:22 +08:00
|
|
|
}
|
2015-09-01 13:59:07 +08:00
|
|
|
}
|
2015-09-01 17:16:51 +08:00
|
|
|
|
2016-08-20 17:43:46 +08:00
|
|
|
@keyframes antStatusProcessing {
|
2017-02-13 14:49:03 +08:00
|
|
|
0% {
|
|
|
|
transform: scale(0.8);
|
|
|
|
opacity: 0.5;
|
2017-02-13 15:01:02 +08:00
|
|
|
}
|
|
|
|
100% {
|
2017-02-13 14:49:03 +08:00
|
|
|
transform: scale(2.4);
|
2016-08-20 17:43:46 +08:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 19:32:55 +08:00
|
|
|
.@{number-prefix-cls} {
|
2015-11-19 16:58:56 +08:00
|
|
|
overflow: hidden;
|
2015-11-26 19:32:55 +08:00
|
|
|
&-only {
|
2015-11-19 16:58:56 +08:00
|
|
|
display: inline-block;
|
2017-03-24 14:33:56 +08:00
|
|
|
transition: all .3s @ease-in-out;
|
2017-02-03 14:20:42 +08:00
|
|
|
height: @badge-height;
|
|
|
|
> p {
|
|
|
|
height: @badge-height;
|
2017-09-27 22:32:49 +08:00
|
|
|
margin: 0;
|
2017-02-03 14:20:42 +08:00
|
|
|
}
|
2015-11-19 16:58:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-19 00:13:16 +08:00
|
|
|
@keyframes antZoomBadgeIn {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
transform: scale(0) translateX(-50%);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: scale(1) translateX(-50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes antZoomBadgeOut {
|
|
|
|
0% {
|
|
|
|
transform: scale(1) translateX(-50%);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 0;
|
|
|
|
transform: scale(0) translateX(-50%);
|
|
|
|
}
|
|
|
|
}
|