123456789101112131415161718192021222324252627282930313233 |
- @import "~@less/variables.less";
- .container{
- .tag;
- cursor: unset;
- }
- .cont{
- .no-tag;
- }
- .selected{
- .selected-tag;
- span{ //ie8子标签灰显bug
- color: @text-color;
- }
- position: relative;
- padding: 0;
- &:before{
- content: unset;
- }
- &:after{
- content: unset;
- }
- }
- .add-icon{
- vertical-align:middle;
- position: absolute;
- right: -15px;
- cursor: pointer;
- top: 4px;
- }
- .add{
- margin-right: 18px;
- }
|