mirror of
https://github.com/grafana/grafana.git
synced 2025-01-08 23:23:45 -06:00
7e83e77dcd
* Theme: Fixes bug in light theme for query editor part * Remove different backgrond
30 lines
412 B
SCSS
30 lines
412 B
SCSS
.query-part {
|
|
background-color: $tight-form-func-bg;
|
|
|
|
&.show-function-controls {
|
|
padding-top: 5px;
|
|
min-width: 100px;
|
|
text-align: center;
|
|
}
|
|
|
|
.query-part__last {
|
|
display: none;
|
|
}
|
|
|
|
&:hover .query-part__last {
|
|
display: inline;
|
|
}
|
|
|
|
&:hover {
|
|
background: $tight-form-func-highlight-bg;
|
|
}
|
|
}
|
|
|
|
.query-part__link {
|
|
cursor: pointer;
|
|
|
|
&--no-value {
|
|
color: $text-muted;
|
|
}
|
|
}
|