You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.0 KiB
73 lines
1.0 KiB
9 years ago
|
@import "../mixins/index";
|
||
|
@tagPrefixClass: ~"@{css-prefix}tag";
|
||
|
|
||
|
.@{tagPrefixClass} {
|
||
|
display: inline-block;
|
||
|
line-height: 22px;
|
||
|
height: 22px;
|
||
|
padding: 0 8px;
|
||
|
border-radius: 20px;
|
||
|
background: #f3f3f3;
|
||
|
font-size: @font-size-base;
|
||
|
margin-right: 4px;
|
||
|
margin-bottom: 8px;
|
||
|
transition: all 0.3s ease;
|
||
|
vertical-align: middle;
|
||
|
opacity: 0.85;
|
||
|
|
||
|
&:hover {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
&,
|
||
|
a,
|
||
|
a:hover {
|
||
|
color: @text-color;
|
||
|
}
|
||
|
|
||
|
.anticon-cross {
|
||
|
.iconfont-size-under-12px(7px);
|
||
|
cursor: pointer;
|
||
|
font-weight: bold;
|
||
|
margin-left: 3px;
|
||
|
position: relative;
|
||
|
top: -1px;
|
||
|
color: #6666;
|
||
|
transition: all 0.3s ease;
|
||
|
opacity: 0.66;
|
||
|
|
||
|
&:hover {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&-blue,
|
||
|
&-green,
|
||
|
&-yellow,
|
||
|
&-red {
|
||
|
&,
|
||
|
a,
|
||
|
a:hover,
|
||
|
.anticon-cross,
|
||
|
.anticon-cross:hover {
|
||
|
color: #fff;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&-blue {
|
||
|
background: @primary-color;
|
||
|
}
|
||
|
|
||
|
&-green {
|
||
|
background: @success-color;
|
||
|
}
|
||
|
|
||
|
&-yellow {
|
||
|
background: @warning-color;
|
||
|
}
|
||
|
|
||
|
&-red {
|
||
|
background: @error-color;
|
||
|
}
|
||
|
}
|