123456789101112131415161718192021222324252627282930 |
- @import "~@less/mixin.less";
- .li-item{
- height:30px;
- line-height: 30px;
- padding: 0 20px 0 25px;
- border:1px #fff solid;
- text-align: left;
- white-space: nowrap;
- max-width: 150px;
- text-overflow: ellipsis;
- overflow: hidden;
- cursor: pointer;
- }
- .hoverable:hover,.border-selected{
- border-color:#3B9ED0;
- }
- .check-selected,.black-selected{
- .select-li;
- }
- .black-selected{
- background-image:url('@common/images/then.png');
- }
- .disabled{
- color: @disable-color;
- }
- .no-dot{
- max-width:unset;
- text-overflow: unset;
- }
|