diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-02-01 11:30:43 +0100 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-02-01 13:26:29 +0100 |
commit | 16fc9eb9ccca21a861ea1ae285c4ae4f74d9ed09 (patch) | |
tree | 9aca7039e9f8c771dd9816c02ece15b6822c7bb3 /apps/settings/css | |
parent | d635d58d19d5ab65c0be754fc32fce99672c249f (diff) | |
download | nextcloud-server-16fc9eb9ccca21a861ea1ae285c4ae4f74d9ed09.tar.gz nextcloud-server-16fc9eb9ccca21a861ea1ae285c4ae4f74d9ed09.zip |
Fix position sticky declaration
Before the generated css was: "position: 'sticky'", now it is
position: sticky. Firefox considered the old value has invalid.
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/settings/css')
-rw-r--r-- | apps/settings/css/settings.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/css/settings.scss b/apps/settings/css/settings.scss index e186c285e64..d63cb4feef5 100644 --- a/apps/settings/css/settings.scss +++ b/apps/settings/css/settings.scss @@ -1556,7 +1556,7 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { /* various */ &#grid-header { - @include position('sticky'); + position: sticky; align-self: normal; background-color: var(--color-main-background); z-index: 100; /* above multiselect */ |