Merge pull request #19813 from nextcloud/bugfix/noid/fix-color-box-shadow-variable

Fix color-box-shadow variable
This commit is contained in:
Joas Schilling 2020-03-18 12:34:08 +01:00 committed by GitHub
commit 7d5b0c290d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ $color-text-lighter: darken($color-main-text, 20%);
$color-loading-light: #777;
$color-loading-dark: #ccc;
$color-box-shadow: rgba(darken($color-main-background, 70%), 0.5);
$color-box-shadow: transparentize(darken($color-main-background, 70%), 0.5);
$color-border: lighten($color-main-background, 7%);
$color-border-dark: lighten($color-main-background, 14%);

View file

@ -72,7 +72,7 @@ $image-favicon: url('../img/logo/logo.svg?v=1') !default;
$color-loading-light: #ccc !default;
$color-loading-dark: #444 !default;
$color-box-shadow: rgba(nc-darken($color-main-background, 70%), 0.5) !default;
$color-box-shadow: transparentize(nc-darken($color-main-background, 70%), 0.5) !default;
// light border like file table or app-content list
$color-border: nc-darken($color-main-background, 7%) !default;