jquery.jOrgChart.css 978 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* Basic styling */
  2. /* Draw the lines */
  3. .jOrgChart .line {
  4. height : 20px;
  5. width : 4px;
  6. }
  7. .jOrgChart .down {
  8. background-color : black;
  9. margin : 0px auto;
  10. }
  11. .jOrgChart .top {
  12. border-top : 3px solid black;
  13. }
  14. .jOrgChart .left {
  15. border-right : 2px solid black;
  16. }
  17. .jOrgChart .right {
  18. border-left : 2px solid black;
  19. }
  20. /* node cell */
  21. .jOrgChart td {
  22. text-align : center;
  23. vertical-align : top;
  24. padding : 0;
  25. }
  26. /* The node */
  27. .jOrgChart .node {
  28. background-color : #35363B;
  29. display : inline-block;
  30. width : 21px;
  31. height : 68px;
  32. line-height : 22px;
  33. z-index : 10;
  34. margin : 0 2px;
  35. overflow:hidden;
  36. }
  37. /* jQuery drag 'n drop */
  38. .drag-active {
  39. border-style : dotted !important;
  40. }
  41. .drop-hover {
  42. border-style : solid !important;
  43. border-color : #E05E00 !important;
  44. }