説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

notice.css 1.7KB

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