Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

AdvancedTimeline.css 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * SonarQube
  3. * Copyright (C) 2009-2021 SonarSource SA
  4. * mailto:info AT sonarsource DOT com
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program; if not, write to the Free Software Foundation,
  18. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  19. */
  20. .line-tooltip {
  21. fill: none;
  22. stroke: var(--secondFontColor);
  23. stroke-width: 1px;
  24. shape-rendering: crispEdges;
  25. }
  26. .chart-mouse-events-overlay {
  27. fill: none;
  28. stroke: none;
  29. pointer-events: all;
  30. }
  31. .chart-zoomed .line-chart-area {
  32. clip-path: url(#chart-clip);
  33. }
  34. .chart-zoomed .line-chart-path {
  35. clip-path: url(#chart-clip);
  36. }
  37. .chart-zoomed .leak-chart-rect {
  38. clip-path: url(#chart-clip);
  39. }
  40. .line-chart-dot {
  41. fill: var(--blue);
  42. }
  43. .line-chart-dot.line-chart-dot-1 {
  44. fill: var(--darkBlue);
  45. }
  46. .line-chart-dot.line-chart-dot-2 {
  47. fill: #24c6e0;
  48. }
  49. .line-chart-event {
  50. fill: #fff;
  51. stroke: var(--blue);
  52. stroke-width: 2px;
  53. }
  54. .line-chart-event.VERSION {
  55. stroke: var(--blue);
  56. }
  57. .line-chart-event.QUALITY_GATE {
  58. stroke: var(--green);
  59. }
  60. .line-chart-event.QUALITY_PROFILE {
  61. stroke: var(--orange);
  62. }
  63. .line-chart-event.OTHER {
  64. stroke: var(--purple);
  65. }
  66. .new-code-legend {
  67. fill: var(--secondFontColor);
  68. font-size: var(--smallFontSize);
  69. }