Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

96 lignes
1.8 KiB

  1. .tree {
  2. padding: 15px;
  3. }
  4. .tree li {
  5. list-style: none;
  6. margin: 2px 0px;
  7. }
  8. ul.tree-children {
  9. padding-left: 20px;
  10. }
  11. .tree-link {
  12. cursor: pointer;
  13. display: inline-block;
  14. padding: 1px;
  15. }
  16. .tree-link .node-parent {
  17. color: #8D99A6;
  18. font-size: 14px;
  19. width: 10px;
  20. text-align: center;
  21. }
  22. .tree-link .node-leaf {
  23. color: #d1d8dd;
  24. }
  25. .tree-link .node-parent,
  26. .tree-link .node-leaf {
  27. margin-right: 8px;
  28. }
  29. .tree-link.active i {
  30. color: #5e64ff;
  31. }
  32. .tree-link.active a {
  33. color: #8D99A6;
  34. }
  35. .tree-hover {
  36. background-color: #F7FAFC;
  37. min-height: 20px;
  38. border: 1px solid #d1d8dd;
  39. }
  40. .tree-node-toolbar {
  41. display: inline-block;
  42. padding: 0px 5px;
  43. margin-left: 15px;
  44. margin-bottom: -4px;
  45. margin-top: -8px;
  46. }
  47. @media (max-width: 767px) {
  48. ul.tree-children {
  49. padding-left: 10px;
  50. }
  51. }
  52. .tree.with-skeleton,
  53. .tree.with-skeleton .tree-node {
  54. position: relative;
  55. }
  56. .tree.with-skeleton.opened::before,
  57. .tree.with-skeleton .tree-node.opened::before,
  58. .tree.with-skeleton:last-child::after,
  59. .tree.with-skeleton .tree-node:last-child::after {
  60. content: '';
  61. position: absolute;
  62. top: 16px;
  63. left: 8px;
  64. height: calc(100% - 26px);
  65. width: 1px;
  66. background: #d1d8dd;
  67. z-index: -1;
  68. }
  69. .tree.with-skeleton:last-child::after,
  70. .tree.with-skeleton .tree-node:last-child::after {
  71. top: 11px;
  72. left: -13px;
  73. height: calc(100% - 15px);
  74. width: 3px;
  75. background: #fff;
  76. }
  77. .tree.with-skeleton.opened > .tree-children > .tree-node > .tree-link::before,
  78. .tree.with-skeleton .tree-node.opened > .tree-children > .tree-node > .tree-link::before {
  79. content: '';
  80. position: absolute;
  81. width: 15px;
  82. height: 1px;
  83. top: 10px;
  84. left: -11px;
  85. z-index: -1;
  86. background: #d1d8dd;
  87. }
  88. .tree.with-skeleton.opened::before {
  89. left: 23px;
  90. top: 33px;
  91. height: calc(100% - 67px);
  92. }
  93. .tree-link.active ~ .balance-area {
  94. color: #36414C !important;
  95. }