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>2016-04-15 17:32:30 +0300
committerPhil Hughes <me@iamphill.com>2016-04-26 11:03:04 +0300
commit8e4aa6e3910899e3907a9ea76415e616f175767b (patch)
tree00bda245e12619960e16334690f7797b0538774e /app/assets/stylesheets/pages/search.scss
parentbb50edb16d426fad1544f08cae7d2dbe41152e26 (diff)
Mobile updates for search UI
Diffstat (limited to 'app/assets/stylesheets/pages/search.scss')
-rw-r--r--app/assets/stylesheets/pages/search.scss40
1 files changed, 35 insertions, 5 deletions
diff --git a/app/assets/stylesheets/pages/search.scss b/app/assets/stylesheets/pages/search.scss
index 4a5149ee64d..4f5b4bae208 100644
--- a/app/assets/stylesheets/pages/search.scss
+++ b/app/assets/stylesheets/pages/search.scss
@@ -154,16 +154,46 @@
}
.search-holder {
- display: -webkit-flex;
- display: flex;
+ @media (min-width: $screen-sm-min) {
+ display: -webkit-flex;
+ display: flex;
+ }
.search-field-holder {
position: relative;
width: 100%;
+ margin-right: 0;
+
+ @media (min-width: $screen-sm-min) {
+ margin-right: 5px;
+ }
}
- .dropdown-toggle {
- width: 160px;
- text-align: left;
+ .btn-search {
+ width: 100%;
+ margin-top: 5px;
+
+ @media (min-width: $screen-sm-min) {
+ width: auto;
+ margin-top: 0;
+ margin-left: 5px;
+ }
+ }
+
+ .dropdown {
+ @media (min-width: $screen-sm-min) {
+ margin-left: 5px;
+ margin-right: 5px;
+ }
+ }
+
+ .dropdown-menu-toggle {
+ width: 100%;
+ margin-top: 5px;
+
+ @media (min-width: $screen-sm-min) {
+ width: 160px;
+ margin-top: 0;
+ }
}
}