mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-13 04:00:21 +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:
@@ -66,7 +66,7 @@
|
||||
}
|
||||
|
||||
input {
|
||||
@extend input[type="text"];
|
||||
@extend input, [type="text"];
|
||||
|
||||
padding: 6px 0 6px 25px;
|
||||
margin: 5px 0 0 5px;
|
||||
@@ -143,7 +143,7 @@
|
||||
}
|
||||
}
|
||||
.select2-choices {
|
||||
@extend input[type="text"];
|
||||
@extend input, [type="text"];
|
||||
padding: 6px 3px 3px 3px;
|
||||
box-shadow: none;
|
||||
background-image: none !important;
|
||||
|
||||
Reference in New Issue
Block a user