1234567891011121314151617181920212223242526272829303132333435 |
- @import "~@less/variables.less";
- .container{
- display: inline-block;
- position: relative;
- /*margin-right: 5px;*/
- }
- .tag,.selected-tag,.no-tag{
- display: inline-block;
- cursor: pointer;
- word-break: break-all;
- /*line-height: 20px;*/
- }
- .no-tag{
- color:inherit;
- }
- .tag{
- color:@placeholder-color;
- &.ext{
- color: @extBlue!important;
- &.selected-area{
- color: #fff!important;
- }
- }
- }
- .tag:before{
- content: '[';
- }
- .tag:after{
- content: ']';
- }
- .selected-tag{
- color: @text-color;
- border-bottom: 1px @border-color solid;
- }
|