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

114 lines
2.0 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@badge-prefix-cls: ant-badge;
@number-prefix-cls: ant-scroll-number;
2015-09-01 13:59:07 +08:00
.@{badge-prefix-cls} {
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%);
top: -10px;
height: 20px;
border-radius: 10px;
min-width: 20px;
background: @error-color;
border: 1px solid transparent;
2015-09-01 13:59:07 +08:00
color: #fff;
line-height: 18px;
2015-09-01 13:59:07 +08:00
text-align: center;
padding: 0 6px;
2015-09-01 13:59:07 +08:00
font-size: 12px;
white-space: nowrap;
2015-11-18 23:42:01 +08:00
transform-origin: -10% center;
2015-09-01 13:59:07 +08:00
z-index: 10;
font-family: tahoma;
2015-09-01 17:26:06 +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;
}
}
&-dot {
position: absolute;
2015-11-18 23:42:01 +08:00
transform: translateX(-50%);
transform-origin: 0px center;
2015-09-01 13:59:07 +08:00
top: -4px;
height: 8px;
width: 8px;
border-radius: 100%;
background: @error-color;
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
&-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;
}
&-not-a-wrapper &-count {
top: auto;
display: block;
position: relative;
transform: translateX(0);
}
2015-09-01 13:59:07 +08:00
}
2015-09-01 17:16:51 +08:00
a & {
2015-09-01 17:16:51 +08:00
&-count:hover {
background: tint(@error-color, 20%);
}
&-count:active {
background: shade(@error-color, 5%);
}
}
2015-11-18 23:42:01 +08:00
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;
2015-11-24 15:29:57 +08:00
transition: transform .3s @ease-in-out;
2015-11-19 16:58:56 +08:00
}
// for IE8/9 display
&.not-support-css-animation &-only {
> p {
display: none;
&.current {
display: block;
}
}
}
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%);
}
}