12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- @import "~@less/mixin.less";
- .container{
- /*position: relative;*/
- display: inline-block;
- }
- .drop-list{
- .pop;
- padding:8px 20px 25px 0;
- .row{
- display: inline-block;
- // width: 200px;
- vertical-align: top;
- margin-left: 8px;
- max-height: 330px;
- overflow-y: auto;
- }
- .independent{
- display: block;
- width: 100%;
- border-bottom: 1px @disable-border-color solid;
- }
- .mainUl{
- width: 495px;
- white-space: normal;
- li{
- width: 99px !important;
- }
- }
- .line{
- width: 100%;
- height: 1px;
- background: #EAEDF1;
- margin: 20px 0 0 10px;
- }
- li{
- padding-left: 20px;
- cursor: pointer;
- .mult-li;
- height: 30px;
- line-height: 30px;
- }
- .selected{
- .select-li;
- }
- .none-selected{
- .select-li;
- background-image: url(../../common/images/then.png);
- }
- .exclusion{
- color:@disable-color;
- }
- }
- .tag,.selected-tag{
- cursor: pointer;
- line-height: 20px;
- &.ext{
- color: @extBlue;
- }
- }
- .selected-tag{
- padding: 0;
- color: @text-color;
- border-bottom: 1px @border-color solid;
- line-height: 22px;
- word-break: break-all;
- }
- .orderTips{
- color: #bfbfbf;
- margin:0 0 0 28px;
- }
- .clear{
- .btnCom;
- .clear;
- height: auto;
- line-height: unset;
- }
- .confirm{
- .btnCom;
- .confirm;
- height: auto;
- line-height: unset;
- width: 60px;
- }
|