| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- .comboTreeArrowBtn{
- display: none;
- }
- .comboTreeWrapper,.comboTreeInputWrapper{
- width: 100% !important;
- }
- .comboTreeWrapper{
- position: relative;
- text-align: left !important;
- }
- .comboTreeInputWrapper{
- position: relative;
- }
- .comboTreeArrowBtn {
- position: absolute;
- top: 0;
- width: 20px;
- padding: 0;
- margin: 0;
- }
- .comboTreeDropDownContainer {
- display: none;
- background: #fff;
- border: 1px solid #aaa;
- max-height: 250px;
- overflow-y: auto;
- position: absolute;
- width: 100%;
- box-sizing: border-box;
- z-index: 1;
- }
- .comboTreeDropDownContainer ul{
- padding: 0px;
- margin: 0;
- }
- .comboTreeDropDownContainer li{
- list-style-type: none;
- padding-left: 15px;
- cursor: pointer;
- }
- .comboTreeDropDownContainer li:hover{
- background-color: #ddd;}
- .comboTreeDropDownContainer li:hover ul{
- background-color: #fff;}
- .comboTreeDropDownContainer li span.comboTreeItemTitle.comboTreeItemHover{
- background-color: #418EFF;
- color: #fff;}
- span.comboTreeItemTitle{
- display: block;
- padding: 2px 4px;
- }
- .comboTreeDropDownContainer label{
- cursor: pointer;
- width: 100%;
- display: block;
- }
- .comboTreeDropDownContainer .comboTreeItemTitle input {
- position: relative;
- top: 2px;
- margin: 0px 4px 0px 0px;
- }
- .comboTreeParentPlus{
- position: relative;
- left: -12px;
- top: 4px;
- width: 4px;
- float: left;
- }
|