userManager.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .comboTreeArrowBtn{
  2. display: none;
  3. }
  4. .comboTreeWrapper,.comboTreeInputWrapper{
  5. width: 100% !important;
  6. }
  7. .comboTreeWrapper{
  8. position: relative;
  9. text-align: left !important;
  10. }
  11. .comboTreeInputWrapper{
  12. position: relative;
  13. }
  14. .comboTreeArrowBtn {
  15. position: absolute;
  16. top: 0;
  17. width: 20px;
  18. padding: 0;
  19. margin: 0;
  20. }
  21. .comboTreeDropDownContainer {
  22. display: none;
  23. background: #fff;
  24. border: 1px solid #aaa;
  25. max-height: 250px;
  26. overflow-y: auto;
  27. position: absolute;
  28. width: 100%;
  29. box-sizing: border-box;
  30. z-index: 1;
  31. }
  32. .comboTreeDropDownContainer ul{
  33. padding: 0px;
  34. margin: 0;
  35. }
  36. .comboTreeDropDownContainer li{
  37. list-style-type: none;
  38. padding-left: 15px;
  39. cursor: pointer;
  40. }
  41. .comboTreeDropDownContainer li:hover{
  42. background-color: #ddd;}
  43. .comboTreeDropDownContainer li:hover ul{
  44. background-color: #fff;}
  45. .comboTreeDropDownContainer li span.comboTreeItemTitle.comboTreeItemHover{
  46. background-color: #418EFF;
  47. color: #fff;}
  48. span.comboTreeItemTitle{
  49. display: block;
  50. padding: 2px 4px;
  51. }
  52. .comboTreeDropDownContainer label{
  53. cursor: pointer;
  54. width: 100%;
  55. display: block;
  56. }
  57. .comboTreeDropDownContainer .comboTreeItemTitle input {
  58. position: relative;
  59. top: 2px;
  60. margin: 0px 4px 0px 0px;
  61. }
  62. .comboTreeParentPlus{
  63. position: relative;
  64. left: -12px;
  65. top: 4px;
  66. width: 4px;
  67. float: left;
  68. }