mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Merge remote-tracking branch 'upstream/master' into dashboard_permissions
This commit is contained in:
@@ -33,7 +33,7 @@
|
||||
border-top: 4px solid $text-color-weak;
|
||||
border-right: 4px solid transparent;
|
||||
border-left: 4px solid transparent;
|
||||
content: "";
|
||||
content: '';
|
||||
}
|
||||
|
||||
// Place the caret
|
||||
@@ -218,7 +218,7 @@
|
||||
.caret {
|
||||
border-top: 0;
|
||||
border-bottom: 4px solid $black;
|
||||
content: "";
|
||||
content: '';
|
||||
}
|
||||
// Different positioning for bottom up menu
|
||||
.dropdown-menu {
|
||||
@@ -255,9 +255,9 @@
|
||||
}
|
||||
|
||||
// Caret to indicate there is a submenu
|
||||
.dropdown-submenu > a::after {
|
||||
.dropdown-submenu > a::before {
|
||||
display: block;
|
||||
content: " ";
|
||||
content: ' ';
|
||||
float: right;
|
||||
width: 0;
|
||||
height: 0;
|
||||
@@ -312,7 +312,7 @@
|
||||
width: 2rem;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
content: "\f11c";
|
||||
content: '\f11c';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
}
|
||||
|
||||
.search-container {
|
||||
left: $side-menu-width;
|
||||
left: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
@@ -38,13 +38,6 @@
|
||||
background-color: $navbarButtonBackground;
|
||||
flex-grow: 10;
|
||||
}
|
||||
|
||||
// .tag-filter {
|
||||
// .Select-control {
|
||||
// width: 300px;
|
||||
// background-color: $navbarBackground;
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
.search-field-spacer {
|
||||
@@ -58,7 +51,7 @@
|
||||
|
||||
.search-dropdown {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-direction: column;
|
||||
height: calc(100% - #{$navbarHeight});
|
||||
}
|
||||
|
||||
@@ -74,9 +67,8 @@
|
||||
flex-grow: 1;
|
||||
height: 100%;
|
||||
padding-top: 16px;
|
||||
display: flex;
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.search-filter-box {
|
||||
@@ -85,7 +77,6 @@
|
||||
padding: $spacer*1.5;
|
||||
min-width: 340px;
|
||||
margin-bottom: $spacer * 1.5;
|
||||
margin-left: $spacer * 1.5;
|
||||
}
|
||||
|
||||
.search-filter-box__header {
|
||||
@@ -215,7 +206,8 @@
|
||||
}
|
||||
|
||||
.search-item__tags {
|
||||
padding: 10px;
|
||||
display: none;
|
||||
//padding: 10px;
|
||||
}
|
||||
|
||||
.search-item__actions {
|
||||
@@ -248,16 +240,46 @@
|
||||
background: $panel-bg;
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(xs) {
|
||||
@include media-breakpoint-up(sm) {
|
||||
.search-container {
|
||||
left: 0;
|
||||
left: $side-menu-width;
|
||||
}
|
||||
|
||||
.search-dropdown__col_2 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.search-item__tags {
|
||||
display: none;
|
||||
display: flex;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
.search-dropdown__col_2 {
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
max-width: 700px;
|
||||
height: 260px;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.search-dropdown__col_1 {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.search-filter-box {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(lg) {
|
||||
.search-dropdown {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.search-dropdown__col_2 {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.search-filter-box {
|
||||
margin-left: $spacer * 1.5;
|
||||
margin-bottom: $spacer * 1.5;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user