time.css.twig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* Legend */
  2. .sf-profiler-timeline .legends .timeline-category {
  3. border: none;
  4. background: none;
  5. border-left: 1em solid transparent;
  6. line-height: 1em;
  7. margin: 0 1em 0 0;
  8. padding: 0 0.5em;
  9. display: none;
  10. opacity: 0.5;
  11. }
  12. .sf-profiler-timeline .legends .timeline-category.active {
  13. opacity: 1;
  14. }
  15. .sf-profiler-timeline .legends .timeline-category.present {
  16. display: inline-block;
  17. }
  18. .timeline-graph {
  19. margin: 1em 0;
  20. width: 100%;
  21. background-color: var(--table-background);
  22. border: 1px solid var(--table-border);
  23. }
  24. /* Typography */
  25. .timeline-graph .timeline-label {
  26. font-family: var(--font-sans-serif);
  27. font-size: 12px;
  28. line-height: 12px;
  29. font-weight: normal;
  30. fill: var(--color-text);
  31. }
  32. .timeline-graph .timeline-label .timeline-sublabel {
  33. margin-left: 1em;
  34. fill: var(--color-muted);
  35. }
  36. .timeline-graph .timeline-subrequest,
  37. .timeline-graph .timeline-border {
  38. fill: none;
  39. stroke: var(--table-border);
  40. stroke-width: 1px;
  41. }
  42. .timeline-graph .timeline-subrequest {
  43. fill: url(#subrequest);
  44. fill-opacity: 0.5;
  45. }
  46. .timeline-subrequest-pattern {
  47. fill: var(--table-border);
  48. }
  49. /* Timeline periods */
  50. .timeline-graph .timeline-period {
  51. stroke-width: 0;
  52. }