1234567891011121314151617181920212223242526272829 |
- @import "~@less/variables.less";
- .container{
- .tag;
- }
- .cont{
- .no-tag;
- }
- .selected{
- .selected-tag;
- 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;
- }
|