You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

256 lines
4.0 KiB

  1. #git-graph-container {
  2. float: left;
  3. display: block;
  4. overflow-x: auto;
  5. width: 100%;
  6. .color-buttons {
  7. margin-right: 0;
  8. }
  9. .ui.header.dividing {
  10. padding-bottom: 10px;
  11. }
  12. li {
  13. list-style-type: none;
  14. height: 20px;
  15. line-height: 20px;
  16. white-space: nowrap;
  17. .node-relation {
  18. font-family: "Bitstream Vera Sans Mono", "Courier", monospace;
  19. }
  20. .author {
  21. color: #666666;
  22. }
  23. .time {
  24. color: #999999;
  25. font-size: 80%;
  26. }
  27. a {
  28. color: #000000;
  29. }
  30. a:hover {
  31. text-decoration: underline;
  32. }
  33. a em {
  34. color: #bb0000;
  35. border-bottom: 1px dotted #bbbbbb;
  36. text-decoration: none;
  37. font-style: normal;
  38. }
  39. }
  40. #rel-container {
  41. max-width: 30%;
  42. overflow-x: auto;
  43. float: left;
  44. }
  45. #rev-container {
  46. width: 100%;
  47. }
  48. #rev-list {
  49. margin: 0;
  50. padding: 0 5px;
  51. min-width: 95%;
  52. li.highlight,
  53. li.hover {
  54. background-color: rgba(0, 0, 0, .05);
  55. }
  56. li.highlight.hover {
  57. background-color: rgba(0, 0, 0, .1);
  58. }
  59. }
  60. #graph-raw-list {
  61. margin: 0;
  62. }
  63. &.monochrome #rel-container {
  64. .flow-group {
  65. stroke: grey;
  66. fill: grey;
  67. }
  68. .flow-group.highlight {
  69. stroke: black;
  70. fill: black;
  71. }
  72. }
  73. &:not(.monochrome) #rel-container {
  74. .flow-group {
  75. &.flow-color-16-1 {
  76. stroke: #499a37;
  77. fill: #499a37;
  78. }
  79. &.flow-color-16-2 {
  80. stroke: hsl(356, 58%, 54%);
  81. fill: #ce4751;
  82. }
  83. &.flow-color-16-3 {
  84. stroke: #8f9121;
  85. fill: #8f9121;
  86. }
  87. &.flow-color-16-4 {
  88. stroke: #ac32a6;
  89. fill: #ac32a6;
  90. }
  91. &.flow-color-16-5 {
  92. stroke: #3d27aa;
  93. fill: #3d27aa;
  94. }
  95. &.flow-color-16-6 {
  96. stroke: #c67d28;
  97. fill: #c67d28;
  98. }
  99. &.flow-color-16-7 {
  100. stroke: #4db392;
  101. fill: #4db392;
  102. }
  103. &.flow-color-16-8 {
  104. stroke: #aa4d30;
  105. fill: #aa4d30;
  106. }
  107. &.flow-color-16-9 {
  108. stroke: #2a6f84;
  109. fill: #2a6f84;
  110. }
  111. &.flow-color-16-10 {
  112. stroke: #c45327;
  113. fill: #c45327;
  114. }
  115. &.flow-color-16-11 {
  116. stroke: #3d965c;
  117. fill: #3d965c;
  118. }
  119. &.flow-color-16-12 {
  120. stroke: #792a93;
  121. fill: #792a93;
  122. }
  123. &.flow-color-16-13 {
  124. stroke: #439d73;
  125. fill: #439d73;
  126. }
  127. &.flow-color-16-14 {
  128. stroke: #103aad;
  129. fill: #103aad;
  130. }
  131. &.flow-color-16-15 {
  132. stroke: #982e85;
  133. fill: #982e85;
  134. }
  135. &.flow-color-16-0 {
  136. stroke: #7db233;
  137. fill: #7db233;
  138. }
  139. }
  140. .flow-group.highlight {
  141. &.flow-color-16-1 {
  142. stroke: #5ac144;
  143. fill: #5ac144;
  144. }
  145. &.flow-color-16-2 {
  146. stroke: #ed5a8b;
  147. fill: #ed5a8b;
  148. }
  149. &.flow-color-16-3 {
  150. stroke: #ced049;
  151. fill: #ced048;
  152. }
  153. &.flow-color-16-4 {
  154. stroke: #db61d7;
  155. fill: #db62d6;
  156. }
  157. &.flow-color-16-5 {
  158. stroke: #4e33d1;
  159. fill: #4f35d1;
  160. }
  161. &.flow-color-16-6 {
  162. stroke: #e6a151;
  163. fill: #e6a151;
  164. }
  165. &.flow-color-16-7 {
  166. stroke: #44daaa;
  167. fill: #44daaa;
  168. }
  169. &.flow-color-16-8 {
  170. stroke: #dd7a5c;
  171. fill: #dd7a5c;
  172. }
  173. &.flow-color-16-9 {
  174. stroke: #38859c;
  175. fill: #38859c;
  176. }
  177. &.flow-color-16-10 {
  178. stroke: #d95520;
  179. fill: #d95520;
  180. }
  181. &.flow-color-16-11 {
  182. stroke: #42ae68;
  183. fill: #42ae68;
  184. }
  185. &.flow-color-16-12 {
  186. stroke: #9126b5;
  187. fill: #9126b5;
  188. }
  189. &.flow-color-16-13 {
  190. stroke: #4ab080;
  191. fill: #4ab080;
  192. }
  193. &.flow-color-16-14 {
  194. stroke: #284fb8;
  195. fill: #284fb8;
  196. }
  197. &.flow-color-16-15 {
  198. stroke: #971c80;
  199. fill: #971c80;
  200. }
  201. &.flow-color-16-0 {
  202. stroke: #87ca28;
  203. fill: #87ca28;
  204. }
  205. }
  206. }
  207. }