Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix sass 1.79 deprecation warnings #7273

Merged
merged 1 commit into from
Oct 1, 2024

Commits on Sep 30, 2024

  1. Fix sass 1.79 deprecation warnings

    This bumps sass to version 1.79 and fixes
    the deprecation warning:
    
    DEPRECATION WARNING: lighten() is deprecated. Suggestions:
    color.scale($color, $lightness: 21.7021276596%)
    color.adjust($color, $lightness: 10%)
    More info: https://sass-lang.com/d/color-functions
       ╷
    12 │   @return lighten($base-color, 10%);
       │           ^^^^^^^^^^^^^^^^^^^^^^^^^
       ╵
        lib/Sass/common/_variables.scss 12:11  get-hover-color()
        lib/Sass/common/_buttons.scss 69:17    root stylesheet
    
    and:
    
    DEPRECATION WARNING: darken() is deprecated. Suggestions:
    color.scale($color, $lightness: -27.7551020408%)
    color.adjust($color, $lightness: -8%)
    More info: https://sass-lang.com/d/color-functions
        ╷
    172 │ $chart-darker: darken($dark, 8%);
        │                ^^^^^^^^^^^^^^^^^
        ╵
        lib/Sass/common/_variables.scss 172:16  @import
        lib/Sass/common/_buttons.scss 1:9       root stylesheet
    pjonsson committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    2ca0e0a View commit details
    Browse the repository at this point in the history