1234567891011121314151617181920212223242526 |
- @import "~@less/variables.less";
- .list{
- max-height:300px;
- overflow-y: auto;
- overflow-x: hidden;
- .pop;
- left: 85px;
- padding: 0 0 10px;
- li{
- width: 200px;
- line-height: 35px;
- border:1px #fff solid;
- padding: 0 20px 0 30px;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- cursor: pointer;
- }
- li:hover{
- border-color:#3B9ED0;
- }
- }
- /*
- .hide{
- display: none;
- }*/
|