123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- @import "mixins/mixins";
- @import "common/var";
- @mixin genTheme($backgroundColorWeight, $borderColorWeight, $fontColorWeight, $hoverColorWeight) {
- background-color: mix($--tag-primary-color, $--color-white, $backgroundColorWeight);
- border-color: mix($--tag-primary-color, $--color-white, $borderColorWeight);
- color: mix($--tag-primary-color, $--color-white, $fontColorWeight);
- @include when(hit) {
- border-color: $--tag-primary-color;
- }
- .el-tag__close {
- color: mix($--tag-primary-color, $--color-white, $fontColorWeight);
- &:hover {
- color: $--color-white;
- background-color: mix($--tag-primary-color, $--color-white, $hoverColorWeight);
- }
- }
- &.el-tag--info {
- background-color: mix($--tag-info-color, $--color-white, $backgroundColorWeight);
- border-color: mix($--tag-info-color, $--color-white, $borderColorWeight);
- color: mix($--tag-info-color, $--color-white, $fontColorWeight);
- @include when(hit) {
- border-color: $--tag-info-color;
- }
- .el-tag__close {
- color: mix($--tag-info-color, $--color-white, $fontColorWeight);
- &:hover {
- color: $--color-white;
- background-color: mix($--tag-info-color, $--color-white, $hoverColorWeight);
- }
- }
- }
- &.el-tag--success {
- background-color: mix($--tag-success-color, $--color-white, $backgroundColorWeight);
- border-color: mix($--tag-success-color, $--color-white, $borderColorWeight);
- color: mix($--tag-success-color, $--color-white, $fontColorWeight);
- @include when(hit) {
- border-color: $--tag-success-color;
- }
- .el-tag__close {
- color: mix($--tag-success-color, $--color-white, $fontColorWeight);
- &:hover {
- color: $--color-white;
- background-color: mix($--tag-success-color, $--color-white, $hoverColorWeight);
- }
- }
- }
- &.el-tag--warning {
- background-color: mix($--tag-warning-color, $--color-white, $backgroundColorWeight);
- border-color: mix($--tag-warning-color, $--color-white, $borderColorWeight);
- color: mix($--tag-warning-color, $--color-white, $fontColorWeight);
- @include when(hit) {
- border-color: $--tag-warning-color;
- }
- .el-tag__close {
- color: mix($--tag-warning-color, $--color-white, $fontColorWeight);
- &:hover {
- color: $--color-white;
- background-color: mix($--tag-warning-color, $--color-white, $hoverColorWeight);
- }
- }
- }
- &.el-tag--danger {
- background-color: mix($--tag-danger-color, $--color-white, $backgroundColorWeight);
- border-color: mix($--tag-danger-color, $--color-white, $borderColorWeight);
- color: mix($--tag-danger-color, $--color-white, $fontColorWeight);
- @include when(hit) {
- border-color: $--tag-danger-color;
- }
- .el-tag__close {
- color: mix($--tag-danger-color, $--color-white, $fontColorWeight);
- &:hover {
- color: $--color-white;
- background-color: mix($--tag-danger-color, $--color-white, $hoverColorWeight);
- }
- }
- }
- }
- @include b(tag) {
- @include genTheme(10%, 20%, 100%, 100%);
- display: inline-block;
- height: 32px;
- padding: $--tag-padding;
- line-height: 30px;
- font-size: $--tag-font-size;
- color: $--tag-primary-color;
- border-width: 1px;
- border-style: solid;
- border-radius: $--tag-border-radius;
- box-sizing: border-box;
- white-space: nowrap;
- .el-icon-close {
- border-radius: 50%;
- text-align: center;
- position: relative;
- cursor: pointer;
- font-size: 12px;
- height: 16px;
- width: 16px;
- line-height: 16px;
- vertical-align: middle;
- top: -1px;
- right: -5px;
- &::before {
- display: block;
- }
- }
- @include m(dark) {
- @include genTheme(100%, 100%, 0, 80%);
- }
- @include m(plain) {
- @include genTheme(0, 40%, 100%, 100%);
- }
- @include m(medium) {
- height: 28px;
- line-height: 26px;
- .el-icon-close {
- transform: scale(.8);
- }
- }
- @include m(small) {
- height: 24px;
- padding: 0 8px;
- line-height: 22px;
- .el-icon-close {
- transform: scale(.8);
- }
- }
- @include m(mini) {
- height: 20px;
- padding: 0 5px;
- line-height: 19px;
- .el-icon-close {
- margin-left: -3px;
- transform: scale(.7);
- }
- }
- }
|