grafana/public/sass/components/_query_part.scss
Torkel Ödegaard 0fd088c757
Graphite: Fixed issue with functions with multiple required params and no defaults caused params that could not be edited (groupByNodes groupByTags) (#21814)
* Graphite: Fixed issue functions with multiple required params and no defaults

* removed some prev changes

* Update public/app/plugins/datasource/graphite/func_editor.ts

Co-authored-by: Dominik Prokop <dominik.prokop@grafana.com>
2020-01-30 09:06:23 +01:00

26 lines
357 B
SCSS

.query-part {
background-color: lighten($input-label-bg, 5%);
&.show-function-controls {
padding-top: 5px;
min-width: 100px;
text-align: center;
}
.query-part__last {
display: none;
}
&:hover .query-part__last {
display: inline;
}
}
.query-part__link {
cursor: pointer;
&--no-value {
color: $text-muted;
}
}