diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-03-28 10:41:00 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-04-04 15:05:58 +0200 |
commit | 4a3538bbd854ccad51fa79d2ae060383f2bbe83d (patch) | |
tree | d606c6938ea59ccb5db82e449b58c5e1d25a27e4 /core/css/styles.scss | |
parent | bb37bdbfc4b2d70873dc70befc774f329de40c74 (diff) | |
download | nextcloud-server-4a3538bbd854ccad51fa79d2ae060383f2bbe83d.tar.gz nextcloud-server-4a3538bbd854ccad51fa79d2ae060383f2bbe83d.zip |
Fix app menu, popovers and searchbox
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/css/styles.scss')
-rw-r--r-- | core/css/styles.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index 134ee9476d4..0bbd89f075b 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -184,17 +184,18 @@ body { padding: 3px; padding-left: 25px; padding-right: 20px; - background: transparent url('../img/actions/search-white.svg?v=1') no-repeat 6px center; + background: transparent url('../img/actions/search-white.svg?v=1') no-repeat center center; color: $color-primary-text; border: 0; border-radius: $border-radius; - margin-top: 3px; + margin-top: 9px; width: 0; cursor: pointer; -webkit-transition: all 100ms; transition: all 100ms; opacity: .6; &:focus, &:active, &:valid { + background-position-x: 6px; color: $color-primary-text; width: 155px; cursor: text; |