Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-02-09 15:09:48 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-02-09 15:09:48 +0300
commit3c53fbc50bf8d084f1184836468850d2a83ef920 (patch)
tree85c451a4082e7b5e8dc3ecb6265edb1aef0b14f0 /app/assets/stylesheets
parente7462f7b49a60b2ee7be14682c23190f7f7c5ba7 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r--app/assets/stylesheets/pages/search.scss12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/search.scss b/app/assets/stylesheets/pages/search.scss
index cd99c667001..a1961d24bbf 100644
--- a/app/assets/stylesheets/pages/search.scss
+++ b/app/assets/stylesheets/pages/search.scss
@@ -2,6 +2,7 @@ $search-dropdown-max-height: 400px;
$search-avatar-size: 16px;
$search-sidebar-min-width: 240px;
$search-sidebar-max-width: 300px;
+$search-topbar-min-height: 111px;
.search-results {
.search-result-row {
@@ -19,6 +20,12 @@ $search-sidebar-max-width: 300px;
}
}
+.search-topbar {
+ @include media-breakpoint-up(md) {
+ min-height: $search-topbar-min-height;
+ }
+}
+
.search-sidebar {
@include media-breakpoint-up(md) {
min-width: $search-sidebar-min-width;
@@ -26,6 +33,11 @@ $search-sidebar-max-width: 300px;
}
}
+.search-nav-tabs {
+ overflow-y: hidden;
+ flex-wrap: nowrap;
+}
+
.search form:hover,
.file-finder-input:hover,
.issuable-search-form:hover,