| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- .explore {
- width: 100%;
- &-container {
- padding: 2rem;
- }
- &-wrapper {
- display: flex;
- > .explore-split {
- width: 50%;
- }
- }
- // Push split button a bit
- .explore-first-button {
- margin-left: 15px;
- }
- // Graph panel needs a bit extra padding at top
- .panel-container {
- padding: $panel-padding;
- padding-top: 10px;
- }
- // Make sure wrap buttons around on small screens
- .navbar {
- flex-wrap: wrap;
- height: auto;
- }
- .navbar-page-btn {
- margin-right: 1rem;
- // Explore icon in header
- .fa {
- font-size: 100%;
- opacity: 0.75;
- margin-right: 0.5em;
- }
- }
- // Toggle mode
- .navbar-button.active {
- color: $btn-active-text-color;
- background-color: $btn-active-bg;
- }
- .elapsed-time {
- position: absolute;
- left: 0;
- right: 0;
- top: 3.5rem;
- text-align: center;
- font-size: 0.8rem;
- }
- .graph-legend {
- flex-wrap: wrap;
- }
- .timepicker {
- display: flex;
- &-rangestring {
- margin-left: 0.5em;
- }
- }
- .run-icon {
- margin-left: 0.5em;
- transform: rotate(90deg);
- }
- .relative {
- position: relative;
- }
- }
- .explore + .explore {
- border-left: 1px dotted $table-border;
- }
- .query-row {
- display: flex;
- & + & {
- margin-top: 0.5rem;
- }
- }
- .query-row-tools {
- width: 4rem;
- }
|