diff options
author | Michael Weimann <mail@michael-weimann.eu> | 2018-09-02 13:10:23 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-09-04 21:27:45 +0200 |
commit | b0d9030388e7cc55e03a7507710d4d4057baf7f7 (patch) | |
tree | 3ed5fd05aa83b94ae0e47e14b84957ee5c490dc3 /core/css | |
parent | c31632ccdf5c9a76499ad36b40c8cf52c1602754 (diff) | |
download | nextcloud-server-b0d9030388e7cc55e03a7507710d4d4057baf7f7.tar.gz nextcloud-server-b0d9030388e7cc55e03a7507710d4d4057baf7f7.zip |
Updates logo scss to regard default values
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/variables.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/css/variables.scss b/core/css/variables.scss index 34a105fccc9..3bfc37484c4 100644 --- a/core/css/variables.scss +++ b/core/css/variables.scss @@ -19,7 +19,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ - + // SCSS darken/lighten function override @function nc-darken($color, $value) { @return darken($color, $value); @@ -60,8 +60,8 @@ $color-text-maxcontrast: nc-lighten($color-main-text, 46.2%) !default; $color-text-light: nc-lighten($color-main-text, 15%) !default; $color-text-lighter: nc-lighten($color-main-text, 30%) !default; -$image-logo: url('../img/logo.svg?v=1'); -$image-login-background: url('../img/background.png?v=2'); +$image-logo: url('../img/logo.svg?v=1') !default; +$image-login-background: url('../img/background.png?v=2') !default; $color-loading-light: #ccc !default; $color-loading-dark: #777 !default; |