mirror of
https://github.com/grafana/grafana.git
synced 2025-01-09 23:53:25 -06:00
fix for search dropdown on small screen + icon overlapping fix (#10091)
* fix for search dropdown on small screen + icon overlapping fix * fixing search filter for small screen * hid tags and filter box * iphone input zoom fix * moved input styling to old-responsive
This commit is contained in:
parent
77b537f45f
commit
9cae579c75
@ -18,6 +18,14 @@
|
||||
// Media queries
|
||||
// ---------------------
|
||||
|
||||
@include media-breakpoint-down(xs) {
|
||||
input[type='text'],
|
||||
input[type='number'],
|
||||
textarea {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(sm) {
|
||||
.navbar-page-btn {
|
||||
max-width: 250px;
|
||||
|
@ -217,3 +217,18 @@
|
||||
padding: $spacer*2 $spacer;
|
||||
background: $panel-bg;
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(xs) {
|
||||
|
||||
.search-container {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.search-dropdown__col_2 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.search-item__tags {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
@ -37,6 +37,7 @@
|
||||
.navbar {
|
||||
box-shadow: none;
|
||||
background: transparent;
|
||||
padding-left: $side-menu-width + 20px;
|
||||
}
|
||||
|
||||
.navbar-page-btn {
|
||||
|
Loading…
Reference in New Issue
Block a user