1234567891011121314151617181920212223242526272829303132333435363738394041 |
- @import "~@less/variables.less";
- .container{
- .tag;
- &.ext{
- color: @extBlue!important;
- }
- line-height: 22px;
- .blued{
- background: @blue;
- color: #fff;
- }
- .nol,.blued{
- min-width:10px;
- height: 22px;
- vertical-align: bottom;
- display:inline-block;
- text-align:center;
- word-break:break-all;
- }
- }
- .selected{
- .selected-tag;
- &:before{
- content: unset;
- }
- &:after{
- content: unset;
- }
- .blued{
- background: @blue;
- color: #fff;
- }
- .nol,.blued{
- min-width:10px;
- display:inline-block;
- text-align:center;
- word-break:break-all;
- height: 22px;
- /*vertical-align: bottom;*/
- }
- }
|