You are here

timeline.css in Devel 8.3

/**
 * Timeline
 */

.timeline__legends {
  font-size: 12px;
  line-height: 1.5em;
}

.timeline__legends span {
  border-left-width: 10px;
  border-left-style: solid;
  padding: 0 10px 0 5px;
}

.timeline__legends--default {
  border-left-color: #e91e63;
}

.timeline__legends--section {
  border-left-color: #3f51b5;
}

.timeline__legends--event_listener {
  border-left-color: #00bcd4;
}

.timeline__legends--event_listener_loading {
  border-left-color: #8bc34a;
}

.timeline__legends--template {
  border-left-color: #ffc107;
}

.timeline__legends--service {
  border-left-color: #795548;
}

text {
  font-size: 12px;
  line-height: 20px;
  height: 22px;
  fill: rgba(0, 0, 0, 0.87);
}
#timeline {
  background: white;
  margin: 10px 0;
  width: 100%;
  position: relative;
  padding: 0 0 40px 0;
}
.timeline__row,
.timeline__scale--x,
.timeline__label rect {
  stroke: rgba(0, 0, 0, 0.18);
}
.timeline__row {
  fill: transparent;
}
.timeline__label rect {
  fill: white;
}
.timeline__period--default {
  fill: #e91e63;
}
.timeline__period--service {
  fill: #795548;
}
.timeline__period--section {
  fill: #3f51b5;
}
.timeline__period--event_listener {
  fill: #00bcd4;
}
.timeline__period--event_listener_loading {
  fill: #8bc34a;
}
.timeline__period--template {
  fill: #ffc107;
}
.timeline__period-trigger {
  fill: transparent;
}
.tooltip {
  position: absolute;
  padding: 8px;
  background: rgb(0,0,0);
  background: rgba(0, 0, 0, 0.87);
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  width: 175px;
  text-align: center;
  display: none;
  color: white;
}
.tooltip__title {
  display: block;
}
.tooltip__content {
  display: block;
}
.axis {
  stroke-width: 2px;
  fill: none;
}

File

webprofiler/css/timeline.css
View source
  1. /**
  2. * Timeline
  3. */
  4. .timeline__legends {
  5. font-size: 12px;
  6. line-height: 1.5em;
  7. }
  8. .timeline__legends span {
  9. border-left-width: 10px;
  10. border-left-style: solid;
  11. padding: 0 10px 0 5px;
  12. }
  13. .timeline__legends--default {
  14. border-left-color: #e91e63;
  15. }
  16. .timeline__legends--section {
  17. border-left-color: #3f51b5;
  18. }
  19. .timeline__legends--event_listener {
  20. border-left-color: #00bcd4;
  21. }
  22. .timeline__legends--event_listener_loading {
  23. border-left-color: #8bc34a;
  24. }
  25. .timeline__legends--template {
  26. border-left-color: #ffc107;
  27. }
  28. .timeline__legends--service {
  29. border-left-color: #795548;
  30. }
  31. text {
  32. font-size: 12px;
  33. line-height: 20px;
  34. height: 22px;
  35. fill: rgba(0, 0, 0, 0.87);
  36. }
  37. #timeline {
  38. background: white;
  39. margin: 10px 0;
  40. width: 100%;
  41. position: relative;
  42. padding: 0 0 40px 0;
  43. }
  44. .timeline__row,
  45. .timeline__scale--x,
  46. .timeline__label rect {
  47. stroke: rgba(0, 0, 0, 0.18);
  48. }
  49. .timeline__row {
  50. fill: transparent;
  51. }
  52. .timeline__label rect {
  53. fill: white;
  54. }
  55. .timeline__period--default {
  56. fill: #e91e63;
  57. }
  58. .timeline__period--service {
  59. fill: #795548;
  60. }
  61. .timeline__period--section {
  62. fill: #3f51b5;
  63. }
  64. .timeline__period--event_listener {
  65. fill: #00bcd4;
  66. }
  67. .timeline__period--event_listener_loading {
  68. fill: #8bc34a;
  69. }
  70. .timeline__period--template {
  71. fill: #ffc107;
  72. }
  73. .timeline__period-trigger {
  74. fill: transparent;
  75. }
  76. .tooltip {
  77. position: absolute;
  78. padding: 8px;
  79. background: rgb(0,0,0);
  80. background: rgba(0, 0, 0, 0.87);
  81. border-bottom-left-radius: 2px;
  82. border-bottom-right-radius: 2px;
  83. width: 175px;
  84. text-align: center;
  85. display: none;
  86. color: white;
  87. }
  88. .tooltip__title {
  89. display: block;
  90. }
  91. .tooltip__content {
  92. display: block;
  93. }
  94. .axis {
  95. stroke-width: 2px;
  96. fill: none;
  97. }