jquery.jOrgChart.css 973 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 : 96px;
  31. height : 60px;
  32. z-index : 10;
  33. margin : 0 2px;
  34. }
  35. /* jQuery drag 'n drop */
  36. .drag-active {
  37. border-style : dotted !important;
  38. }
  39. .drop-hover {
  40. border-style : solid !important;
  41. border-color : #E05E00 !important;
  42. }
  43. /*下面是横向树状图的样式*/