From bb134fc424eb30fc36a46eeaebef7975184bdb86 Mon Sep 17 00:00:00 2001 From: Kirill Shumilov Date: Fri, 22 Dec 2017 12:00:26 +0300 Subject: [PATCH] fix(xod-client): fix spinner in the LibSuggester (now it spins over search icon) --- .../src/core/styles/components/Suggester.scss | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/packages/xod-client/src/core/styles/components/Suggester.scss b/packages/xod-client/src/core/styles/components/Suggester.scss index ead19b8f..4ae90a20 100644 --- a/packages/xod-client/src/core/styles/components/Suggester.scss +++ b/packages/xod-client/src/core/styles/components/Suggester.scss @@ -1,6 +1,5 @@ @mixin custom-search-clear-button() { position: relative; - z-index: 10; width: 18px; height: 18px; border: none; @@ -36,17 +35,20 @@ .loading-icon { position: absolute; - right: 8px; + left: 6px; top: 6px; width: 18px; height: 30px; + box-sizing: border-box; background: $input-color-bg; - font-size: $font-size-xl; + font-size: $font-size-m; overflow: hidden; - text-align: right; + text-align: center; .fa { + margin-right: -2px; line-height: 32px; + color: $light-grey-bright; } }