timeline.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. div.timeline-frame {
  2. border: 1px solid #BEBEBE;
  3. overflow: hidden;
  4. }
  5. div.timeline-axis {
  6. border-color: #BEBEBE;
  7. border-width: 1px;
  8. border-top-style: solid;
  9. }
  10. div.timeline-axis-grid {
  11. border-left-style: solid;
  12. border-width: 1px;
  13. }
  14. div.timeline-axis-grid-minor {
  15. border-color: #e5e5e5;
  16. }
  17. div.timeline-axis-grid-major {
  18. border-color: #bfbfbf;
  19. }
  20. div.timeline-axis-text {
  21. color: #4D4D4D;
  22. padding: 3px;
  23. white-space: nowrap;
  24. }
  25. div.timeline-axis-text-minor {
  26. }
  27. div.timeline-axis-text-major {
  28. }
  29. div.timeline-event {
  30. color: #1A1A1A;
  31. border-color: #97B0F8;
  32. background-color: #D5DDF6;
  33. display: inline-block;
  34. }
  35. div.timeline-event-selected {
  36. border-color: #FFC200;
  37. background-color: #FFF785;
  38. z-index: 999;
  39. }
  40. div.timeline-event-box {
  41. text-align: center;
  42. border-style: solid;
  43. border-width: 1px;
  44. border-radius: 5px;
  45. -moz-border-radius: 5px; /* For Firefox 3.6 and older */
  46. }
  47. div.timeline-event-dot {
  48. border-style: solid;
  49. border-width: 5px;
  50. border-radius: 5px;
  51. -moz-border-radius: 5px; /* For Firefox 3.6 and older */
  52. }
  53. div.timeline-event-range {
  54. border-style: solid;
  55. border-width: 1px;
  56. border-radius: 2px;
  57. -moz-border-radius: 2px; /* For Firefox 3.6 and older */
  58. }
  59. div.timeline-event-range-drag-left {
  60. cursor: w-resize;
  61. z-index: 1000;
  62. }
  63. div.timeline-event-range-drag-right {
  64. cursor: e-resize;
  65. z-index: 1000;
  66. }
  67. div.timeline-event-line {
  68. border-left-width: 1px;
  69. border-left-style: solid;
  70. }
  71. div.timeline-event-content {
  72. margin: 5px;
  73. white-space: nowrap;
  74. overflow: hidden;
  75. }
  76. div.timeline-groups-axis {
  77. border-color: #BEBEBE;
  78. border-width: 1px;
  79. }
  80. div.timeline-groups-text {
  81. color: #4D4D4D;
  82. padding-left: 10px;
  83. padding-right: 10px;
  84. }
  85. div.timeline-currenttime {
  86. background-color: #FF7F6E;
  87. width: 2px;
  88. }
  89. div.timeline-customtime {
  90. background-color: #6E94FF;
  91. width: 2px;
  92. cursor: move;
  93. }
  94. div.timeline-navigation {
  95. font-family: arial;
  96. font-size: 20px;
  97. font-weight: bold;
  98. color: gray;
  99. border: 1px solid #BEBEBE;
  100. background-color: #F5F5F5;
  101. border-radius: 2px;
  102. -moz-border-radius: 2px; /* For Firefox 3.6 and older */
  103. }
  104. div.timeline-navigation-new, div.timeline-navigation-delete,
  105. div.timeline-navigation-zoom-in, div.timeline-navigation-zoom-out,
  106. div.timeline-navigation-move-left, div.timeline-navigation-move-right {
  107. cursor: pointer;
  108. padding: 10px 10px;
  109. float: left;
  110. text-decoration: none;
  111. border-color: #BEBEBE; /* border is used for the separator between new and navigation buttons */
  112. width: 16px;
  113. height: 16px;
  114. }
  115. div.timeline-navigation-new {
  116. background: url('img/16/new.png') no-repeat center;
  117. }
  118. div.timeline-navigation-delete {
  119. padding: 0px;
  120. padding-left: 5px;
  121. background: url('img/16/delete.png') no-repeat center;
  122. }
  123. div.timeline-navigation-zoom-in {
  124. background: url('img/16/zoomin.png') no-repeat center;
  125. }
  126. div.timeline-navigation-zoom-out {
  127. background: url('img/16/zoomout.png') no-repeat center;
  128. }
  129. div.timeline-navigation-move-left {
  130. background: url('img/16/moveleft.png') no-repeat center;
  131. }
  132. div.timeline-navigation-move-right {
  133. background: url('img/16/moveright.png') no-repeat center;
  134. }