grafana/public/sass/components/_search.scss

199 lines
3.3 KiB
SCSS
Raw Normal View History

.search-backdrop {
position: fixed;
right: 0;
bottom: 0;
left: 0;
top: $navbarHeight;
z-index: $zindex-modal-backdrop;
background-color: $black;
@include opacity(70);
}
2016-02-15 08:27:41 -06:00
.search-container {
2017-06-02 07:19:39 -05:00
left: 0;
top: 0;
right: 0;
2017-06-08 06:56:51 -05:00
bottom: 0;
z-index: ($zindex-modal-backdrop + 10);
2017-06-08 06:56:51 -05:00
position: fixed;
2016-02-15 08:27:41 -06:00
.label-tag {
margin-left: 6px;
font-size: 11px;
padding: 2px 6px;
}
}
// Search
.search-field-wrapper {
width: 100%;
display: flex;
background-color: $navbarButtonBackground;
2016-02-15 08:27:41 -06:00
input {
max-width: 653px;
//padding: 0.5rem 1.5rem 0.5rem 0;
padding: 1rem 1rem 0.75rem 1rem;
height: 51px;
line-height: 51px;
2016-02-15 08:27:41 -06:00
box-sizing: border-box;
outline: none;
background: $side-menu-bg;
background-color: $navbarButtonBackground;
flex-grow: 10;
2016-02-15 08:27:41 -06:00
}
}
.search-field-spacer {
flex-grow: 1;
}
2017-06-08 06:56:51 -05:00
.search-switches {
flex-grow: 1;
padding: 1rem 1rem 0.75rem 1rem;
white-space: nowrap;
}
.search-field-icon {
font-size: $font-size-lg;
2017-06-08 06:56:51 -05:00
padding: 1rem 1rem 0.75rem 1.5rem;
}
.search-dropdown {
display: flex;
2017-06-02 07:19:39 -05:00
flex-direction: column;
max-width: 1100px;
visibility: none;
opacity: 0;
2017-06-08 06:56:51 -05:00
height: 100%;
&--fade-in {
visibility: visible;
opacity: 1;
transition: opacity 0.3s;
2016-02-15 08:27:41 -06:00
}
}
.search-results-container {
2017-06-08 06:56:51 -05:00
height: 90%;
2016-02-15 08:27:41 -06:00
overflow: auto;
display: block;
line-height: 28px;
padding: $spacer;
background: $panel-bg;
flex-grow: 10;
2016-02-15 08:27:41 -06:00
.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 {
word-wrap: break-word;
2016-02-15 08:27:41 -06:00
display: block;
padding: 3px 10px;
white-space: nowrap;
background-color: $tight-form-bg;
2016-02-15 08:27:41 -06:00
margin-bottom: 4px;
@include left-brand-border();
&:hover,
&.selected {
background-color: $tight-form-func-bg;
@include left-brand-border-gradient();
}
2016-02-15 08:27:41 -06:00
}
.search-result-tags {
float: right;
}
.search-result-actions {
float: right;
padding-left: 20px;
}
}
.search-result-icon::before {
content: "\f009";
}
.search-item-dash-home .search-result-icon::before {
content: "\f015";
}
.search-item-dash-home .search-result-icon::before {
content: "\f015";
}
.search-item-child {
margin-left: 20px;
}
.search-item-dash-home > .search-result-link > .search-result-icon::before {
content: "\f015";
}
.search-item-dash-folder > .search-result-link > .search-result-icon::before {
content: "\f07c";
}
2016-02-15 08:27:41 -06:00
.search-button-row {
padding: $spacer*2;
display: flex;
2017-06-08 06:56:51 -05:00
flex-direction: row;
align-items: flex-start;
2017-06-08 06:56:51 -05:00
justify-content: space-around;
height: 30%;
2016-02-15 08:27:41 -06:00
button, a {
margin-bottom: $spacer;
2016-02-15 08:27:41 -06:00
}
.search-button-row-explore-link {
color: $gray-3;
font-size: $font-size-sm;
position: relative;
top: 1.0rem;
&:hover {
color: $link-hover-color;
}
2017-03-21 10:16:42 -05:00
img {
vertical-align: text-bottom;
2017-03-21 10:16:42 -05:00
}
}
2016-02-15 08:27:41 -06:00
}
2017-06-08 06:56:51 -05:00
@include media-breakpoint-up(lg) {
2017-06-02 07:19:39 -05:00
.search-dropdown {
flex-direction: row;
}
2017-06-08 06:56:51 -05:00
.search-button-row {
flex-direction: column;
justify-content: flex-start;
}
}
@include media-breakpoint-up(md) {
2017-06-02 07:19:39 -05:00
.search-container {
left: 78px;
}
}