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

Suppress sass deprecation warning #503

Merged

Commits on Sep 10, 2024

  1. Suppress sass deprecation warning

    The following deprecation warning was addressed.
    
    ```
    Deprecation Warning: Sass's behavior for declarations that appear after nested
    rules will be changing to match the behavior specified by CSS in an upcoming
    version. To keep the existing behavior, move the declaration above the nested
    rule. To opt into the new behavior, wrap the declaration in `& {}`.
    
    More info: https://sass-lang.com/d/mixed-decls
    
        ╷
    5   │ ┌     label {
    6   │ │       display: none;
    7   │ │     }
        │ └─── nested rule
    ... │
    5   │ ┌     label {
    6   │ │       display: none;
    7   │ │     }
        │ └─── nested rule
    ... │
    9   │       margin-bottom: 5px;
        │       ^^^^^^^^^^^^^^^^^^ declaration
        ╵
        vendor/bundle/gems/activeadmin_addons-1.10.1/app/assets/stylesheets/activeadmin_addons/inputs/date-ti
    me-picker-filter.scss 9:5  @import
    (snip)
    ```
    
    This warning is due to the following change in dart-sass.
    sass/dart-sass#2267
    wonda-tea-coffee authored and rjherrera committed Sep 10, 2024
    Configuration menu
    Copy the full SHA
    7fddc9b View commit details
    Browse the repository at this point in the history