_explore.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. .datasource-picker {
  52. min-width: 10rem;
  53. }
  54. .timepicker {
  55. display: flex;
  56. &-rangestring {
  57. margin-left: 0.5em;
  58. }
  59. }
  60. .run-icon {
  61. margin-left: 0.5em;
  62. transform: rotate(90deg);
  63. }
  64. .relative {
  65. position: relative;
  66. }
  67. }
  68. .explore + .explore {
  69. border-left: 1px dotted $table-border;
  70. }
  71. .query-row {
  72. display: flex;
  73. & + & {
  74. margin-top: 0.5rem;
  75. }
  76. }
  77. .query-row-tools {
  78. width: 4rem;
  79. }