-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: resolve deprecation warnings for sass (#2118)
* fix: resolve deprecation warnings for sass * Loading as module
- Loading branch information
1 parent
b7713d5
commit ce8377f
Showing
54 changed files
with
697 additions
and
594 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,57 @@ | ||
@use './ui/variables'; | ||
|
||
.o-bookmark-button:focus { | ||
background-color: $grey-lighter; | ||
background-color: variables.$grey-lighter; | ||
} | ||
|
||
.o-bookmark-button.light:focus { | ||
background-color: $grey-lighter; | ||
background-color: variables.$grey-lighter; | ||
} | ||
|
||
.o-bookmark-button.primary:focus { | ||
background-color: $primary-color-dark; | ||
background-color: variables.$primary-color-dark; | ||
} | ||
|
||
.o-bookmark-button.danger:focus { | ||
background-color: $danger-color-dark; | ||
background-color: variables.$danger-color-dark; | ||
} | ||
|
||
.o-bookmark-button.grey-light:focus { | ||
background-color: $grey-light; | ||
background-color: variables.$grey-light; | ||
} | ||
|
||
.o-bookmark-button.grey-lighter:focus { | ||
background-color: $grey-lighter; | ||
background-color: variables.$grey-lighter; | ||
} | ||
|
||
.o-bookmark-button.grey-lightest:focus { | ||
background-color: $grey-lightest; | ||
background-color: variables.$grey-lightest; | ||
} | ||
|
||
.o-bookmark-button:focus:not(:focus-visible) { | ||
background-color: $light-color; | ||
background-color: variables.$light-color; | ||
} | ||
|
||
.o-bookmark-button.light:focus:not(:focus-visible) { | ||
background-color: $light-color; | ||
background-color: variables.$light-color; | ||
} | ||
|
||
.o-bookmark-button.primary:focus:not(:focus-visible) { | ||
background-color: $primary-color; | ||
background-color: variables.$primary-color; | ||
} | ||
|
||
.o-bookmark-button.danger:focus:not(:focus-visible) { | ||
background-color: $danger-color; | ||
background-color: variables.$danger-color; | ||
} | ||
|
||
.o-bookmark-button.grey-light:focus:not(:focus-visible) { | ||
background-color: $grey-light; | ||
background-color: variables.$grey-light; | ||
} | ||
|
||
.o-bookmark-button.grey-lighter:focus:not(:focus-visible) { | ||
background-color: $grey-lighter; | ||
background-color: variables.$grey-lighter; | ||
} | ||
|
||
.o-bookmark-button.grey-lightest:focus:not(:focus-visible) { | ||
background-color: $grey-lightest; | ||
background-color: variables.$grey-lightest; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
@use './ui/variables'; | ||
|
||
.o-scale { | ||
font-family: Arial, 'Helvetica Neue', sans-serif; | ||
font-size: .625rem; | ||
line-height: $line-height-larger; | ||
line-height: variables.$line-height-larger; | ||
padding-right: 5px; | ||
padding-right: 10px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@import 'externs/ol'; | ||
@use 'externs/ol'; | ||
|
||
.ol-attribution li a { | ||
color: #bbb; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.