12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- @import "~@less/variables.less";
- .container{
- .tag;
- &.ext{
- color: @extBlue;
- }
- &.selected-area{
- background: #338fff;
- color: #fff!important;
- span{
- color: #fff!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;
- font-size: unset;
- }
- .nol {
- color: unset;
- }
- .nol,.blued{
- min-width:10px;
- display:inline-block;
- text-align:center;
- word-break:break-all;
- height: 22px;
- /*vertical-align: bottom;*/
- }
- }
|