mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
501d5fbcc2
* Change default prometheus to latest and prometheus v1 to prometheus1 * Update README * Remove prometheus1 block as not used * Explore: Separatae scrolling in split view * Update snapshot
399 lines
6.6 KiB
SCSS
399 lines
6.6 KiB
SCSS
.icon-margin-right {
|
|
margin-right: 0.25em;
|
|
|
|
@media only screen and (max-width: 1320px) {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.icon-brand-gradient {
|
|
color: linear-gradient(180deg, #f05a28 30%, #fbca0a 100%);
|
|
}
|
|
|
|
.icon-margin-left {
|
|
margin-left: 0.25em;
|
|
|
|
@media only screen and (max-width: 1320px) {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
.explore-active-button {
|
|
box-shadow: $btn-active-box-shadow;
|
|
border: 1px solid $orange-dark !important;
|
|
color: $orange-dark !important;
|
|
}
|
|
|
|
.explore-ds-picker {
|
|
min-width: 200px;
|
|
max-width: 300px;
|
|
}
|
|
|
|
.explore-ds-picker--small {
|
|
min-width: 60px;
|
|
max-width: 60px;
|
|
|
|
.ds-picker {
|
|
min-width: 60px;
|
|
max-width: 60px;
|
|
}
|
|
}
|
|
|
|
.explore-toolbar {
|
|
background: inherit;
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: flex-start;
|
|
height: auto;
|
|
padding: 0 $dashboard-padding;
|
|
border-bottom: 1px solid #0000;
|
|
transition-duration: 0.35s;
|
|
transition-timing-function: ease-in-out;
|
|
transition-property: box-shadow, border-bottom;
|
|
}
|
|
|
|
.explore-toolbar-item {
|
|
position: relative;
|
|
align-self: center;
|
|
|
|
&:first-child {
|
|
padding-left: 34px;
|
|
|
|
@include media-breakpoint-up(md) {
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.explore-toolbar.splitted {
|
|
.explore-toolbar-item {
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
.explore-toolbar-content-item:first-child {
|
|
padding-left: 0;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
|
|
.explore-toolbar-item:last-child {
|
|
flex: auto;
|
|
}
|
|
|
|
.explore-toolbar-header {
|
|
display: flex;
|
|
flex: 1 1 0;
|
|
flex-flow: row nowrap;
|
|
font-size: 18px;
|
|
min-height: $navbarHeight;
|
|
line-height: $navbarHeight;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.explore-toolbar-header-close {
|
|
margin-left: auto;
|
|
color: $text-color-weak;
|
|
}
|
|
|
|
.explore-toolbar-content {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.explore-toolbar-content-item {
|
|
display: flex;
|
|
padding: 0px 2px;
|
|
position: relative;
|
|
|
|
&:first-child {
|
|
padding-left: $dashboard-padding;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 1070px) {
|
|
.explore-toolbar-content {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.explore-toolbar.splitted {
|
|
.explore-toolbar-content-item {
|
|
padding: 2px 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 810px) {
|
|
.explore-toolbar {
|
|
.explore-toolbar-content-item {
|
|
&:first-child {
|
|
padding-left: 2px;
|
|
margin: 0 12px 0 16px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.explore {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
}
|
|
|
|
.explore.explore-live {
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.explore + .explore {
|
|
border-left: 1px dotted $table-border;
|
|
}
|
|
|
|
.explore-container {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
flex-direction: column;
|
|
padding: $dashboard-padding;
|
|
}
|
|
|
|
.explore-container.explore-live {
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.explore-wrapper {
|
|
display: flex;
|
|
|
|
> .explore-split {
|
|
width: 50%;
|
|
}
|
|
}
|
|
|
|
.explore-input-margin {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.navbar .elapsed-time {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 48px;
|
|
text-align: center;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.graph-legend {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.query-row {
|
|
display: flex;
|
|
position: relative;
|
|
align-items: flex-start;
|
|
@include media-breakpoint-down(sm) {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
& + & {
|
|
margin-top: $space-sm;
|
|
}
|
|
}
|
|
|
|
.query-row-tools {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.query-row-status {
|
|
position: relative;
|
|
top: 0;
|
|
right: 35px;
|
|
z-index: 1015;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
height: $input-height;
|
|
width: 0;
|
|
}
|
|
|
|
.query-row-field {
|
|
margin-right: 3px;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.query-row-break {
|
|
flex-basis: 100%;
|
|
}
|
|
|
|
.query-transactions {
|
|
display: table;
|
|
}
|
|
|
|
.query-transaction {
|
|
display: table-row;
|
|
color: $text-color-weak;
|
|
line-height: 1.44;
|
|
}
|
|
|
|
.query-transaction--loading {
|
|
animation: query-loading-color-change 1s alternate 100;
|
|
}
|
|
|
|
@keyframes query-loading-color-change {
|
|
from {
|
|
color: $text-color-faint;
|
|
}
|
|
|
|
to {
|
|
color: $blue;
|
|
}
|
|
}
|
|
|
|
.query-transaction__type,
|
|
.query-transaction__duration {
|
|
display: table-cell;
|
|
font-size: $font-size-xs;
|
|
text-align: right;
|
|
padding-right: 0.25em;
|
|
}
|
|
|
|
// Prometheus-specifics, to be extracted to datasource soon
|
|
|
|
.explore {
|
|
.prom-query-field-info {
|
|
margin: 0.25em 0.5em 0.5em;
|
|
display: flex;
|
|
|
|
details {
|
|
margin-left: 1em;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ReactTable basic overrides (does not include pivot/groups/filters)
|
|
// When integrating ReactTable as new panel plugin, move to _panel_table.scss
|
|
|
|
.ReactTable {
|
|
border: none;
|
|
}
|
|
|
|
.ReactTable .rt-table {
|
|
// Allow some space for the no-data text
|
|
min-height: 90px;
|
|
}
|
|
|
|
.ReactTable .rt-thead.-header {
|
|
box-shadow: none;
|
|
background: $list-item-bg;
|
|
border-top: 2px solid $body-bg;
|
|
border-bottom: 2px solid $body-bg;
|
|
height: 2em;
|
|
}
|
|
|
|
.ReactTable .rt-thead.-header .rt-th {
|
|
text-align: left;
|
|
color: $blue;
|
|
font-weight: $font-weight-semi-bold;
|
|
}
|
|
|
|
.ReactTable .rt-thead .rt-td,
|
|
.ReactTable .rt-thead .rt-th {
|
|
padding: 0.45em 0 0.45em 1.1em;
|
|
border-right: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.ReactTable .rt-tbody .rt-td {
|
|
padding: 0.45em 0 0.45em 1.1em;
|
|
border-bottom: 2px solid $body-bg;
|
|
border-right: 2px solid $body-bg;
|
|
}
|
|
|
|
.ReactTable .rt-tbody .rt-td:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
.ReactTable .-pagination {
|
|
border-top: none;
|
|
box-shadow: none;
|
|
margin-top: $space-sm;
|
|
}
|
|
|
|
.ReactTable .-pagination .-btn {
|
|
color: $blue;
|
|
background: $list-item-bg;
|
|
}
|
|
|
|
.ReactTable .-pagination input,
|
|
.ReactTable .-pagination select {
|
|
color: $input-color;
|
|
background-color: $input-bg;
|
|
}
|
|
|
|
.ReactTable .-loading {
|
|
background: $input-bg;
|
|
}
|
|
|
|
.ReactTable .-loading.-active {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.ReactTable .-loading > div {
|
|
color: $input-color;
|
|
}
|
|
|
|
.ReactTable .rt-tr .rt-td:last-child {
|
|
text-align: right;
|
|
}
|
|
|
|
.ReactTable .rt-noData {
|
|
top: 60px;
|
|
z-index: inherit;
|
|
}
|
|
|
|
// React-component cascade fix: show "loading" when loading children
|
|
.rc-cascader-menu-item-loading:after {
|
|
position: absolute;
|
|
right: 12px;
|
|
content: 'loading';
|
|
color: #767980;
|
|
font-style: italic;
|
|
}
|
|
|
|
// React-component cascade fix: vertical alignment issue with Safari
|
|
.rc-cascader-menu {
|
|
vertical-align: top;
|
|
// To fix cascader button width issue in windows + firefox
|
|
scrollbar-width: thin;
|
|
}
|
|
|
|
// TODO Experimental
|
|
|
|
.cheat-sheet-item {
|
|
margin: $space-lg 0;
|
|
}
|
|
|
|
.cheat-sheet-item__title {
|
|
font-size: $font-size-h3;
|
|
}
|
|
|
|
.cheat-sheet-item__example {
|
|
margin: $space-xs 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.query-type-toggle {
|
|
margin-left: 5px;
|
|
|
|
.btn.active {
|
|
background-color: $input-bg;
|
|
background-image: none;
|
|
background-clip: padding-box;
|
|
border: $input-border;
|
|
border-radius: $input-border-radius;
|
|
@include box-shadow($input-box-shadow);
|
|
color: $input-color;
|
|
}
|
|
}
|