84 lines
1.4 KiB
Plaintext
84 lines
1.4 KiB
Plaintext
// Search
|
|
.grafana-search-panel {
|
|
.search-field-wrapper {
|
|
padding: 6px 10px;
|
|
input {
|
|
width: 100%;
|
|
}
|
|
button {
|
|
margin: 0 4px 0 0;
|
|
}
|
|
> span {
|
|
display: block;
|
|
overflow: hidden;
|
|
padding-right: 25px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.search-results-container {
|
|
height: 500px;
|
|
overflow: auto;
|
|
display: block;
|
|
line-height: 28px;
|
|
|
|
.search-result-item:hover, .search-result-item.selected {
|
|
.search-result-link, .search-result-link > .fa {
|
|
color: @grafanaListHighlight;
|
|
}
|
|
}
|
|
|
|
.selected {
|
|
.search-result-tag {
|
|
opacity: 0.70;
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
.search-result-link {
|
|
color: @grafanaListMainLinkColor;
|
|
.fa {
|
|
padding-right: 10px;
|
|
color: @grafanaListHighlightContrast;
|
|
}
|
|
}
|
|
|
|
.search-result-item:nth-child(odd) {
|
|
background-color: @grafanaListAccent;
|
|
}
|
|
|
|
.search-result-item {
|
|
padding: 0px 10px;
|
|
white-space: nowrap;
|
|
border-bottom: 1px solid @grafanaListBorderBottom;
|
|
border-top: 1px solid @grafanaListBorderTop;
|
|
border-left: 1px solid @grafanaListBorderBottom;
|
|
}
|
|
|
|
.search-result-tags {
|
|
float: right;
|
|
.label-tag {
|
|
margin-left: 6px;
|
|
font-size: 11px;
|
|
padding: 2px 6px;
|
|
}
|
|
}
|
|
|
|
.search-result-actions {
|
|
float: right;
|
|
padding-left: 20px;
|
|
}
|
|
}
|
|
|
|
.search-tagview-switch {
|
|
position: absolute;
|
|
top: 6px;
|
|
right: 24px;
|
|
color: darken(@linkColor, 30%);
|
|
&.active {
|
|
color: @linkColor;
|
|
}
|
|
}
|
|
|
|
|