diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-11-16 16:24:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-16 16:24:49 +0100 |
commit | fe13db424eefe4cb52fa833f548652b1a0685c28 (patch) | |
tree | e5c1e01c47caa2d5243a68d66590367878defea6 | |
parent | 19422807635036cadb346c0c0e989b33417c1b56 (diff) | |
parent | edd7dde27b1031639425e596ddb3341bcc687958 (diff) | |
download | nextcloud-server-fe13db424eefe4cb52fa833f548652b1a0685c28.tar.gz nextcloud-server-fe13db424eefe4cb52fa833f548652b1a0685c28.zip |
Merge pull request #12489 from nextcloud/bugfix/11179/safari-performance
Only use width and opacity for transition
-rw-r--r-- | core/css/header.scss | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/css/header.scss b/core/css/header.scss index e215c9d4c40..72863696d6a 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -691,8 +691,7 @@ nav[role='navigation'] { height: 34px; width: 0; cursor: pointer; - -webkit-transition: all 100ms; - transition: all 100ms; + transition: width 100ms, opacity 100ms; opacity: .6; &:focus, &:active, &:valid { background-position-x: 6px; |