mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-24 05:38:52 +00:00
Deal with deprecated @extend syntax
Errors: ``` SassError: SassError: compound selectors may no longer be extended. Consider `@extend a, :hover` instead. See http://bit.ly/ExtendCompound for details. ```
This commit is contained in:
@@ -13,12 +13,12 @@
|
||||
}
|
||||
}
|
||||
|
||||
.icon-email:before { @extend .icon-envelope, :before }
|
||||
.icon-resend_authorization_email:before { @extend .icon-envelope, :before }
|
||||
.icon-resume:before { @extend .icon-refresh, :before }
|
||||
.icon-email:before { @extend .icon-envelope, :before; }
|
||||
.icon-resend_authorization_email:before { @extend .icon-envelope, :before; }
|
||||
.icon-resume:before { @extend .icon-refresh, :before; }
|
||||
|
||||
.icon-cancel:before,
|
||||
.icon-void:before { @extend .icon-remove, :before }
|
||||
.icon-void:before { @extend .icon-remove, :before; }
|
||||
|
||||
.icon-capture:before { @extend .icon-ok, :before }
|
||||
.icon-credit:before { @extend .icon-ok, :before }
|
||||
.icon-capture:before { @extend .icon-ok, :before; }
|
||||
.icon-credit:before { @extend .icon-ok, :before ; }
|
||||
|
||||
Reference in New Issue
Block a user