mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 13:39:19 -06:00
93 lines
1.5 KiB
Plaintext
93 lines
1.5 KiB
Plaintext
.playlist-search-container {
|
|
margin: 15px;
|
|
z-index: 1000;
|
|
position: relative;
|
|
width: 700px;
|
|
box-shadow: 0px 0px 55px 0px black;
|
|
background-color: @grafanaPanelBackground;
|
|
|
|
.label-tag {
|
|
margin-left: 6px;
|
|
font-size: 11px;
|
|
padding: 2px 6px;
|
|
}
|
|
}
|
|
|
|
.playlist-search-switches {
|
|
position: relative;
|
|
top: -39px;
|
|
left: 260px;
|
|
}
|
|
|
|
.playlist-search-field-wrapper {
|
|
input {
|
|
width: 100%;
|
|
padding: 8px 8px;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
button {
|
|
margin: 0 4px 0 0;
|
|
}
|
|
> span {
|
|
display: block;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.playlist-search-results-container {
|
|
min-height: 100px;
|
|
overflow: auto;
|
|
display: block;
|
|
line-height: 28px;
|
|
|
|
.search-item:hover, .search-item.selected {
|
|
background-color: @grafanaListHighlight;
|
|
}
|
|
|
|
.selected {
|
|
.search-result-tag {
|
|
opacity: 0.70;
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
.fa-star, .fa-star-o {
|
|
padding-left: 13px;
|
|
}
|
|
|
|
.fa-star {
|
|
color: @orange;
|
|
}
|
|
|
|
.search-result-link {
|
|
color: @grafanaListMainLinkColor;
|
|
.fa {
|
|
padding-right: 10px;
|
|
}
|
|
}
|
|
|
|
.search-item {
|
|
display: block;
|
|
padding: 3px 10px;
|
|
white-space: nowrap;
|
|
background-color: @grafanaListBackground;
|
|
margin-bottom: 4px;
|
|
.search-result-icon:before {
|
|
content: "\f009";
|
|
}
|
|
|
|
&.search-item-dash-home .search-result-icon:before {
|
|
content: "\f015";
|
|
}
|
|
}
|
|
|
|
.search-result-tags {
|
|
float: right;
|
|
}
|
|
|
|
.search-result-actions {
|
|
float: right;
|
|
padding-left: 20px;
|
|
}
|
|
} |