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:
authorClement Ho <clemmakesapps@gmail.com>2018-07-09 19:04:22 +0300
committerMike Greiling <mike@pixelcog.com>2018-07-09 19:04:22 +0300
commit5e8ff175d5c3b8e1d45704950ac47777946a7e47 (patch)
tree4097704d0d923f6b592395d6913c9f788184c20f
parente2f7fbe4393a5897f88f3e455a556ad74a312cbf (diff)
Fix search bar text input alignment
-rw-r--r--app/assets/stylesheets/framework/filters.scss5
-rw-r--r--changelogs/unreleased/fix-search-bar.yml5
2 files changed, 9 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/filters.scss b/app/assets/stylesheets/framework/filters.scss
index 551a7e852ae..5d79610b21e 100644
--- a/app/assets/stylesheets/framework/filters.scss
+++ b/app/assets/stylesheets/framework/filters.scss
@@ -224,7 +224,10 @@
.form-control {
position: relative;
min-width: 200px;
- padding: 5px 25px 6px 0;
+ padding-right: 25px;
+ padding-left: 0;
+ height: $input-height;
+ line-height: inherit;
border-color: transparent;
&:focus,
diff --git a/changelogs/unreleased/fix-search-bar.yml b/changelogs/unreleased/fix-search-bar.yml
new file mode 100644
index 00000000000..d4c0c1efddf
--- /dev/null
+++ b/changelogs/unreleased/fix-search-bar.yml
@@ -0,0 +1,5 @@
+---
+title: Fix search bar text input alignment
+merge_request:
+author:
+type: fixed