diff options
author | Eric Eastwood <contact@ericeastwood.com> | 2017-04-10 16:55:10 -0500 |
---|---|---|
committer | Eric Eastwood <contact@ericeastwood.com> | 2017-04-12 13:44:12 -0500 |
commit | ae5c16f777552b8545bd81903cea9b6070227fc7 (patch) | |
tree | ac962cbbb615f7812b9950b4b0ffdbc7998bb0e1 | |
parent | 069c54a7d7a1d1d6ec1dc48c4212139eff6735df (diff) | |
download | gitlab-ce-ae5c16f777552b8545bd81903cea9b6070227fc7.tar.gz |
Fix recent searches icon alignment in Safari30642-fix-recent-search-history-icon-alignment-in-safari
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/30642
-rw-r--r-- | app/assets/stylesheets/framework/filters.scss | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/app/assets/stylesheets/framework/filters.scss b/app/assets/stylesheets/framework/filters.scss index 12465d4a70b..be058c6ec6e 100644 --- a/app/assets/stylesheets/framework/filters.scss +++ b/app/assets/stylesheets/framework/filters.scss @@ -246,17 +246,17 @@ } } -.filtered-search-history-dropdown-toggle-button { +.filtered-search-history-dropdown-wrapper { + position: static; display: flex; - align-items: center; + flex-direction: column; +} + +.filtered-search-history-dropdown-toggle-button { + flex: 1; width: auto; - height: 100%; - padding-top: 0; - padding-left: 0.75em; - padding-bottom: 0; - padding-right: 0.5em; + padding-right: 10px; - background-color: transparent; border-radius: 0; border-top: 0; border-left: 0; @@ -264,6 +264,7 @@ border-right: 1px solid $border-color; color: $gl-text-color-secondary; + line-height: 1; transition: color 0.1s linear; @@ -275,24 +276,21 @@ } .dropdown-toggle-text { + display: inline-block; color: inherit; .fa { + vertical-align: middle; color: inherit; } } .fa { - position: initial; + position: static; } } -.filtered-search-history-dropdown-wrapper { - position: initial; - flex-shrink: 0; -} - .filtered-search-history-dropdown { width: 40%; |