| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- .query-keyword {
- font-weight: $font-weight-semi-bold;
- color: $query-blue;
- }
- .gf-form-disabled {
- .query-keyword {
- color: darken($query-blue, 20%);
- }
- }
- .query-segment-operator {
- color: $orange;
- }
- .gf-form-query {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- align-content: flex-start;
- align-items: flex-start;
- .gf-form,
- .gf-form-filler {
- margin-bottom: 2px;
- }
- .gf-form-switch,
- .gf-form-switch label,
- .gf-form-input,
- .gf-form-select-wrapper,
- .gf-form-filler,
- .gf-form-label {
- margin-right: 2px;
- }
- .gf-form + .gf-form {
- margin-right: 0;
- }
- }
- .gf-form-query-content {
- flex-grow: 2;
- &--collapsed {
- overflow: hidden;
- .gf-form-label {
- overflow: hidden;
- text-overflow: ellipsis;
- width: 100%;
- white-space: nowrap;
- }
- }
- }
- .gf-form-query-letter-cell {
- .gf-form-query-letter-cell-carret {
- display: inline-block;
- width: 0.7rem;
- position: relative;
- left: -2px;
- }
- .gf-form-query-letter-cell-letter {
- font-weight: bold;
- color: $query-blue;
- }
- .gf-form-query-letter-cell-ds {
- color: $text-color-weak;
- }
- }
- .gf-query-ds-label {
- text-align: center;
- width: 44px;
- }
- .grafana-metric-options {
- margin-top: 25px;
- }
- .tight-form-func {
- background: $tight-form-func-bg;
- &.show-function-controls {
- padding-top: 5px;
- min-width: 100px;
- text-align: center;
- }
- }
- input[type="text"].tight-form-func-param {
- background: transparent;
- border: none;
- margin: 0;
- padding: 0;
- }
- .tight-form-func-controls {
- display: none;
- text-align: center;
- .fa-arrow-left {
- float: left;
- position: relative;
- top: 2px;
- }
- .fa-arrow-right {
- float: right;
- position: relative;
- top: 2px;
- }
- .fa-remove {
- margin-left: 10px;
- }
- }
- .grafana-metric-options {
- margin-top: 25px;
- }
- .tight-form-func {
- background: $tight-form-func-bg;
- &.show-function-controls {
- padding-top: 5px;
- min-width: 100px;
- text-align: center;
- }
- }
- input[type="text"].tight-form-func-param {
- font-size: 0.875rem;
- background: transparent;
- border: none;
- margin: 0;
- padding: 0;
- }
- .tight-form-func-controls {
- display: none;
- text-align: center;
- .fa-arrow-left {
- float: left;
- position: relative;
- top: 2px;
- }
- .fa-arrow-right {
- float: right;
- position: relative;
- top: 2px;
- }
- .fa-remove {
- margin-left: 10px;
- }
- }
- .query-troubleshooter {
- font-size: $font-size-sm;
- margin: $gf-form-margin;
- border: 1px solid $btn-secondary-bg;
- min-height: 100px;
- border-radius: 3px;
- }
- .query-troubleshooter__header {
- float: right;
- font-size: $font-size-sm;
- text-align: right;
- padding: $input-padding-y $input-padding-x;
- a {
- margin-left: $spacer;
- }
- }
- .query-troubleshooter__body {
- padding: $spacer 0;
- }
|