jquery.orgchart.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. div.orgChart {
  2. border : 1px solid #cccccc;
  3. background-color : #ffffe8;
  4. margin : 10px;
  5. padding : 20px;
  6. }
  7. div.orgChart h2 {
  8. margin : 0px;
  9. font-size : 1.1em;
  10. border-bottom : 2px solid black;
  11. }
  12. div.orgChart ul {
  13. list-style : none;
  14. margin : 4px;
  15. padding : 0px;
  16. font-size : 0.8em;
  17. text-align : left;
  18. }
  19. div.orgChart table {
  20. width : 100%;
  21. }
  22. div.orgChart tr.lines td.line {
  23. width : 1px;
  24. height : 20px;
  25. }
  26. div.orgChart tr.lines td.top {
  27. border-top : 3px solid black;
  28. }
  29. div.orgChart tr.lines td.left {
  30. border-right : 2px solid black;
  31. }
  32. div.orgChart tr.lines td.right {
  33. border-left : 2px solid black;
  34. }
  35. div.orgChart td {
  36. text-align : center;
  37. vertical-align : top;
  38. padding : 0px 2px;
  39. }
  40. div.orgChart div.node {
  41. cursor : pointer;
  42. border : 2px solid black;
  43. display : inline-block;
  44. width : 96px;
  45. height : 60px;
  46. background-color : #ffffcf;
  47. border-radius : 8px;
  48. box-shadow : 4px 4px 6px #888888;
  49. -moz-border-radius : 8px;
  50. -moz-box-shadow : 4px 4px 6px #888888;
  51. -webkit-border-radius : 8px;
  52. -webkit-box-shadow : 4px 4px 6px #888888;
  53. }
  54. div.orgChart div.node.hover {
  55. background-color : #ffe8e8;
  56. }
  57. div.orgChart tr.nodeCollapsed div.node {
  58. background-color: #FF6666;
  59. }