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.

169 lines
2.8 KiB

4 years ago
  1. :root {
  2. --color-calendar-graph-day-bg: #dddbdb;
  3. --color-calendar-graph-day-L1-bg: #39dd34;
  4. --color-calendar-graph-day-L2-bg: #45a045;
  5. --color-calendar-graph-day-L3-bg: #047526;
  6. --color-calendar-graph-day-L4-bg: #0a4208;
  7. }
  8. .calendar {
  9. width: 750px;
  10. font-family: Helvetica, arial;
  11. border: 1px solid #DDDDDD;
  12. border-radius: 3px;
  13. min-height: 243px;
  14. text-align: center;
  15. margin: 0 auto;
  16. }
  17. .calendar-graph text.wday,
  18. .calendar-graph text.month {
  19. font-size: 10px;
  20. fill: #aaa;
  21. }
  22. .contrib-legend {
  23. text-align: right;
  24. padding: 0 14px 10px 0;
  25. display: inline-block;
  26. float: right;
  27. }
  28. .contrib-legend .legend {
  29. display: inline-block;
  30. list-style: none;
  31. margin: 0 5px;
  32. position: relative;
  33. bottom: -1px;
  34. padding: 0;
  35. }
  36. .contrib-legend .legend li {
  37. display: inline-block;
  38. width: 10px;
  39. height: 10px;
  40. }
  41. .text-small {
  42. font-size: 12px;
  43. color: #767676;
  44. }
  45. .calendar-graph {
  46. padding: 5px 0 0;
  47. height: 126px;
  48. text-align: center;
  49. }
  50. .contrib-column {
  51. padding: 15px 0;
  52. text-align: center;
  53. border-left: 1px solid #ddd;
  54. border-top: 1px solid #ddd;
  55. font-size: 11px;
  56. }
  57. .contrib-column-first {
  58. border-left: 0;
  59. }
  60. .table-column {
  61. display: table-cell;
  62. width: 1%;
  63. padding-right: 10px;
  64. padding-left: 10px;
  65. vertical-align: top;
  66. }
  67. .contrib-number {
  68. font-weight: 300;
  69. line-height: 1.3em;
  70. font-size: 24px;
  71. display: block;
  72. color: #333;
  73. }
  74. .calendar img.spinner {
  75. width: 70px;
  76. margin-top: 50px;
  77. min-height: 70px;
  78. }
  79. .monospace {
  80. text-align: center;
  81. color: #000;
  82. font-family: monospace;
  83. }
  84. .monospace a {
  85. color: #1D75AB;
  86. text-decoration: none;
  87. }
  88. .contrib-footer {
  89. font-size: 11px;
  90. padding: 0 10px 12px;
  91. text-align: left;
  92. width: 100%;
  93. box-sizing: border-box;
  94. height: 26px;
  95. }
  96. .left.text-muted {
  97. float: left;
  98. margin-left: 9px;
  99. color: #767676;
  100. }
  101. .left.text-muted a {
  102. color: #4078c0;
  103. text-decoration: none;
  104. }
  105. .left.text-muted a:hover,
  106. .monospace a:hover {
  107. text-decoration: underline;
  108. }
  109. h2.f4.text-normal.mb-3 {
  110. display: none;
  111. }
  112. .float-left.text-gray {
  113. float: left;
  114. }
  115. #user-activity-overview{
  116. display:none;
  117. }
  118. .day-tooltip {
  119. white-space: nowrap;
  120. position: absolute;
  121. z-index: 99999;
  122. padding: 10px;
  123. font-size: 12px;
  124. color: #959da5;
  125. text-align: center;
  126. background: rgba(0,0,0,.85);
  127. border-radius: 3px;
  128. display: none;
  129. pointer-events: none;
  130. }
  131. .day-tooltip strong {
  132. color: #dfe2e5;
  133. }
  134. .day-tooltip.is-visible {
  135. display: block;
  136. }
  137. .day-tooltip:after {
  138. position: absolute;
  139. bottom: -10px;
  140. left: 50%;
  141. width: 5px;
  142. height: 5px;
  143. box-sizing: border-box;
  144. margin: 0 0 0 -5px;
  145. content: " ";
  146. border: 5px solid transparent;
  147. border-top-color: rgba(0,0,0,.85)
  148. }