diff options
author | Phil Hughes <me@iamphill.com> | 2017-03-02 11:10:39 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-03-02 11:10:39 +0000 |
commit | 11dfea7e83fbc06c0d20724f872e395e806eb4ca (patch) | |
tree | 28aa53556b734d091b3b8d3f6163481ca3abddf7 /app | |
parent | 6efa5dc04a2e3c64664676e30962760ebf99b72a (diff) | |
download | gitlab-ce-11dfea7e83fbc06c0d20724f872e395e806eb4ca.tar.gz |
Fixed the position of loading spinnerissue-descrpiption-spinner-off
Fixed the position of the loading spinner in the issue template dropdown
toggle. It was previously just positioned with the content, this now
correctly places it in the same place the chevron down is
Closes #28906
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/framework/dropdowns.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/assets/stylesheets/framework/dropdowns.scss b/app/assets/stylesheets/framework/dropdowns.scss index ff31e7f7b3d..3187967aef0 100644 --- a/app/assets/stylesheets/framework/dropdowns.scss +++ b/app/assets/stylesheets/framework/dropdowns.scss @@ -107,11 +107,12 @@ &.fa-spinner { font-size: 16px; - margin-top: -8px; + margin-top: -3px; } } - .fa-chevron-down { + .fa-chevron-down, + .fa-spinner { position: absolute; top: 11px; right: 8px; |