diff options
author | Julius Haertl <jus@bitgrid.net> | 2017-03-05 22:38:59 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2017-03-20 12:49:08 +0100 |
commit | 7381a2ec5c4d2fa5324e8927e81f858b11005ce7 (patch) | |
tree | 58fbea77b6b3ccd21bffb5613afda3f850825bef /core/css/variables.scss | |
parent | 322ecdca63903a8f17aec4927c2d219e45d13e6c (diff) | |
download | nextcloud-server-7381a2ec5c4d2fa5324e8927e81f858b11005ce7.tar.gz nextcloud-server-7381a2ec5c4d2fa5324e8927e81f858b11005ce7.zip |
Replace old color occurences with calculations
Signed-off-by: Julius Haertl <jus@bitgrid.net>
Diffstat (limited to 'core/css/variables.scss')
-rw-r--r-- | core/css/variables.scss | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/core/css/variables.scss b/core/css/variables.scss index 1ca81610f1a..47c8e1a27f8 100644 --- a/core/css/variables.scss +++ b/core/css/variables.scss @@ -19,13 +19,4 @@ $image-login-background: '../img/background.jpg?v=1'; $color-loading: #969696; $color-loading-dark: #bbbbbb; - -$color-main-old-f8f8f8: nc-darken($color-main-background, 3%); -$color-main-old-eeeeee: nc-lighten($color-main-text, 93%); -$color-main-old-dddddd: nc-lighten($color-main-text, 86%); -$color-main-old-bbbbbb: nc-lighten($color-main-text, 73%); -$color-main-old-888888: nc-lighten($color-main-text, 53%); -$color-main-old-555555: nc-lighten($color-main-text, 33%); -$color-main-old-333333: nc-lighten($color-main-text, 20%); - -$color-box-shadow: rgba($color-main-old-333333, 0.75);
\ No newline at end of file +$color-box-shadow: rgba(nc-lighten($color-main-text, 20%), 0.75);
\ No newline at end of file |