_explore.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .explore {
  2. width: 100%;
  3. &-container {
  4. padding: 2rem;
  5. }
  6. &-wrapper {
  7. display: flex;
  8. > .explore-split {
  9. width: 50%;
  10. }
  11. }
  12. // Push split button a bit
  13. .explore-first-button {
  14. margin-left: 15px;
  15. }
  16. // Graph panel needs a bit extra padding at top
  17. .panel-container {
  18. padding: $panel-padding;
  19. padding-top: 10px;
  20. }
  21. // Make sure wrap buttons around on small screens
  22. .navbar {
  23. flex-wrap: wrap;
  24. height: auto;
  25. }
  26. .navbar-page-btn {
  27. margin-right: 1rem;
  28. // Explore icon in header
  29. .fa {
  30. font-size: 100%;
  31. opacity: 0.75;
  32. margin-right: 0.5em;
  33. }
  34. }
  35. // Toggle mode
  36. .navbar-button.active {
  37. color: $btn-active-text-color;
  38. background-color: $btn-active-bg;
  39. }
  40. .elapsed-time {
  41. position: absolute;
  42. left: 0;
  43. right: 0;
  44. top: 3.5rem;
  45. text-align: center;
  46. font-size: 0.8rem;
  47. }
  48. .graph-legend {
  49. flex-wrap: wrap;
  50. }
  51. .timepicker {
  52. display: flex;
  53. &-rangestring {
  54. margin-left: 0.5em;
  55. }
  56. }
  57. .run-icon {
  58. margin-left: 0.5em;
  59. transform: rotate(90deg);
  60. }
  61. .relative {
  62. position: relative;
  63. }
  64. }
  65. .explore + .explore {
  66. border-left: 1px dotted $table-border;
  67. }
  68. .query-row {
  69. display: flex;
  70. & + & {
  71. margin-top: 0.5rem;
  72. }
  73. }
  74. .query-row-tools {
  75. width: 4rem;
  76. }