diff options
author | Michael Weimann <mail@michael-weimann.eu> | 2018-08-19 11:54:37 +0200 |
---|---|---|
committer | Michael Weimann <mail@michael-weimann.eu> | 2018-08-19 12:02:27 +0200 |
commit | 18b677ee0225eb259b1901e8dcb5d3fb836d255a (patch) | |
tree | 1ac2b3b49ea0c307cff8d9ad8e9f2e61402f4d67 /core/css/apps.scss | |
parent | 4b71df7b15e50815e060da73bb73b7d54dc06333 (diff) | |
download | nextcloud-server-18b677ee0225eb259b1901e8dcb5d3fb836d255a.tar.gz nextcloud-server-18b677ee0225eb259b1901e8dcb5d3fb836d255a.zip |
Adds a vendor prefix for position sticky
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
Diffstat (limited to 'core/css/apps.scss')
-rw-r--r-- | core/css/apps.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 1446187ad83..1120459230a 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -639,7 +639,7 @@ kbd { min-width: $sidebar-min-width; max-width: $sidebar-max-width; display: block; - position: sticky; + @include position('sticky'); top: $header-height; right:0; overflow-y: auto; @@ -1046,7 +1046,7 @@ $popovericon-size: 16px; /* CONTENT LIST ------------------------------------------------------------ */ .app-content-list { width: 300px; - position: sticky; + @include position('sticky'); top: $header-height; border-right: 1px solid var(--color-border); display: flex; |