123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- @import "mixins/mixins";
- @import "common/var";
- @include b(badge) {
- position: relative;
- vertical-align: middle;
- display: inline-block;
- @include e(content) {
- background-color: $--badge-background-color;
- border-radius: $--badge-radius;
- color: $--color-white;
- display: inline-block;
- font-size: $--badge-font-size;
- height: $--badge-size;
- line-height: $--badge-size;
- padding: 0 $--badge-padding;
- text-align: center;
- white-space: nowrap;
- border: 1px solid $--color-white;
- @include when(fixed) {
- position: absolute;
- top: 0;
- right: #{1 + $--badge-size / 2};
- transform: translateY(-50%) translateX(100%);
- @include when(dot) {
- right: 5px;
- }
- }
- @include when(dot) {
- height: 8px;
- width: 8px;
- padding: 0;
- right: 0;
- border-radius: 50%;
- }
- @each $type in (primary, success, warning, info, danger) {
- @include m($type) {
- @if $type == primary {
- background-color: $--color-primary;
- } @else if $type == success {
- background-color: $--color-success;
- } @else if $type == warning {
- background-color: $--color-warning;
- } @else if $type == info {
- background-color: $--color-info;
- } @else {
- background-color: $--color-danger;
- }
- }
- }
- }
- }
|