vueplus-ui
Version:
A high quality UI components Library with Vue.js
194 lines (171 loc) • 4.45 kB
text/less
@tag-prefix-cls: ~"@{css-prefix}tag";
@tag-close-prefix-cls: vp-icon-ios-close-empty;
.@{tag-prefix-cls} {
display: inline-block;
height: 22px;
line-height: 22px;
margin: 2px 4px 2px 0;
padding: 0 8px;
border: 1px solid @border-color-split;
border-radius: @btn-border-radius-small;
background: @background-color-base;
font-size: @tag-font-size;
vertical-align: middle;
opacity: 1;
overflow: hidden;
cursor: pointer;
//transition: all @transition-time @ease-in-out;
&-dot{
height: 32px;
line-height: 32px;
border: 1px solid @border-color-split ;
color: @text-color ;
background: #fff ;
padding: 0 12px;
&-inner{
display: inline-block;
width: 12px;
height: 12px;
margin-right: 8px;
border-radius: 50%;
background: @border-color-split;
position: relative;
top: 1px;
}
.@{tag-close-prefix-cls} {
color: #666 ;
margin-left: 12px ;
}
}
&-border{
height: 24px;
line-height: 24px;
border: 1px solid @border-color-split ;
color: @text-color ;
background: #fff ;
position: relative;
.@{tag-close-prefix-cls} {
color: #666 ;
margin-left: 12px ;
}
&:after{
content: "";
display: none;
width: 1px;
background: @border-color-split;
position: absolute;
top: 0;
bottom: 0;
right: 22px;
}
&.@{tag-prefix-cls}-closable {
&:after{
display: block;
}
.@{tag-close-prefix-cls} {
margin-left: 18px ;
}
}
&.@{tag-prefix-cls}-blue {
color: @link-color ;
border: 1px solid @link-color ;
&:after{
background: @link-color;
}
.@{tag-close-prefix-cls}{
color: @link-color ;
}
}
&.@{tag-prefix-cls}-green {
color: @success-color ;
border: 1px solid @success-color ;
&:after{
background: @success-color;
}
.@{tag-close-prefix-cls}{
color: @success-color ;
}
}
&.@{tag-prefix-cls}-yellow {
color: @warning-color ;
border: 1px solid @warning-color ;
&:after{
background: @warning-color;
}
.@{tag-close-prefix-cls}{
color: @warning-color ;
}
}
&.@{tag-prefix-cls}-red {
color: @error-color ;
border: 1px solid @error-color ;
&:after{
background: @error-color;
}
.@{tag-close-prefix-cls}{
color: @error-color ;
}
}
}
&:hover {
opacity: 0.85;
}
&,
a,
a:hover {
color: @text-color;
}
&-text {
a:first-child:last-child {
display: inline-block;
margin: 0 -8px;
padding: 0 8px;
}
}
.@{tag-close-prefix-cls} {
.iconfont-size-under-12px(20px);
cursor: pointer;
margin-left: 8px;
color: #666;
opacity: 0.66;
position: relative;
top: 1px;
//transition: all @transition-time @ease-in-out;
&:hover {
opacity: 1;
}
}
&-blue,
&-green,
&-yellow,
&-red {
border: 0;
&,
a,
a:hover,
.@{tag-close-prefix-cls},
.@{tag-close-prefix-cls}:hover {
color: #fff;
}
}
&-blue,
&-blue&-dot &-dot-inner
{
background: @link-color;
}
&-green,
&-green&-dot &-dot-inner
{
background: @success-color;
}
&-yellow,
&-yellow&-dot &-dot-inner
{
background: @warning-color;
}
&-red,
&-red&-dot &-dot-inner
{
background: @error-color;
}
}