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:
authorTM Lee <tmlee.ltm@gmail.com>2017-06-19 16:50:30 +0300
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-06-19 16:50:30 +0300
commitf5d16b0db81d094b751adc13e0f7e3e362493bf2 (patch)
tree27e2229c3db74a94f12267a2425783786266ab67 /app/assets/stylesheets/framework/forms.scss
parent9fe6c2b2c2dd92831c93297021b41d6721e4b201 (diff)
[#27697] Make the arrow icons consistent in dropdown
Diffstat (limited to 'app/assets/stylesheets/framework/forms.scss')
-rw-r--r--app/assets/stylesheets/framework/forms.scss11
1 files changed, 9 insertions, 2 deletions
diff --git a/app/assets/stylesheets/framework/forms.scss b/app/assets/stylesheets/framework/forms.scss
index a78179e727f..61e3897f369 100644
--- a/app/assets/stylesheets/framework/forms.scss
+++ b/app/assets/stylesheets/framework/forms.scss
@@ -125,10 +125,11 @@ label {
.select-wrapper {
position: relative;
- .fa-caret-down {
+ .fa-chevron-down {
position: absolute;
+ font-size: 10px;
right: 10px;
- top: 10px;
+ top: 12px;
color: $gray-darkest;
pointer-events: none;
}
@@ -138,6 +139,12 @@ label {
padding-left: 10px;
padding-right: 10px;
-webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+
+ &::-ms-expand {
+ display: none;
+ }
}
.form-control-inline {