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:
authorPhil Hughes <me@iamphill.com>2017-02-01 20:10:24 +0300
committerPhil Hughes <me@iamphill.com>2017-02-03 21:03:40 +0300
commitb934a123fb047555633fb8c34c0d0c1a6b152f19 (patch)
tree824d5d16f4e11094eacb0a69ef687a89895f9a4b /app/assets/stylesheets/pages/boards.scss
parente4d1e1437d43a34656f4343fc53431695742a989 (diff)
Responsive styling fixes for the filters
Diffstat (limited to 'app/assets/stylesheets/pages/boards.scss')
-rw-r--r--app/assets/stylesheets/pages/boards.scss16
1 files changed, 14 insertions, 2 deletions
diff --git a/app/assets/stylesheets/pages/boards.scss b/app/assets/stylesheets/pages/boards.scss
index 415eccf1764..506cb108249 100644
--- a/app/assets/stylesheets/pages/boards.scss
+++ b/app/assets/stylesheets/pages/boards.scss
@@ -418,8 +418,11 @@
display: flex;
.form-control {
- max-width: 200px;
margin-left: auto;
+
+ @media (min-width: $screen-sm-min) {
+ max-width: 200px;
+ }
}
}
@@ -496,10 +499,19 @@
display: flex;
> .dropdown {
+ display: none;
margin-right: 10px;
+
+ @media (min-width: $screen-sm-min) {
+ display: block;
+ }
}
.dropdown-menu-toggle {
- width: 140px;
+ width: 100px;
+
+ @media (min-width: $screen-md-min) {
+ width: 140px;
+ }
}
}