123456789101112131415161718192021222324252627282930 |
- @import "~@less/mixin.less";
- .container{
- display: inline-block;
- cursor: pointer;
- }
- .tag,.selected-tag{
- cursor: pointer;
- line-height: 20px;
- &.ext{
- color: @extBlue!important;
- &.selected-area{
- color: #fff!important;
- }
- }
- }
- .selected-tag{
- padding: 0;
- // color: @text-color;
- border-bottom: 1px @border-color solid;
- line-height: 22px;
- }
- .hide-tag{
- padding: 0;
- // color: @text-color;
- line-height: 22px;
- &.ext{
- color: @extBlue;
- }
- }
|