feat: Resolve all deprecation warnings for sass
- Replace @import with @use and @forward - Only color function is used in _basic.scss for now - Change _all.scss to _index.scss - Modules use direct dependencies - Move @include from _config.scss to _common.scss, this was a long term mistake - Remove $color_list - Change basic_color()
This commit is contained in:
parent
867e96ea0a
commit
4e4f8814d3
26 changed files with 476 additions and 420 deletions
|
|
@ -1,13 +1,17 @@
|
|||
@use "../../global/config";
|
||||
@use "../../global/typography";
|
||||
@use "../../functions/color" as *;
|
||||
|
||||
.table_link {
|
||||
width: 100%;
|
||||
border: 0;
|
||||
table-layout: auto;
|
||||
|
||||
tbody {
|
||||
border-bottom: $border_basic;
|
||||
border-bottom: config.$border_basic;
|
||||
|
||||
&:hover {
|
||||
background-color: $color_bright;
|
||||
background-color: config.$color_bright;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -26,11 +30,11 @@
|
|||
}
|
||||
|
||||
.cell_link {
|
||||
padding-right: $space_basic;
|
||||
padding-left: $space_basic;
|
||||
padding-right: config.$space_basic;
|
||||
padding-left: config.$space_basic;
|
||||
|
||||
&:hover {
|
||||
background-color: $foxtrot_color;
|
||||
background-color: basic_color(foxtrot);
|
||||
|
||||
a:first-child {
|
||||
display: none;
|
||||
|
|
@ -38,7 +42,7 @@
|
|||
|
||||
a:last-child {
|
||||
display: block;
|
||||
color: $color_highlight_basic;
|
||||
color: config.$color_highlight_basic;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -58,8 +62,8 @@
|
|||
}
|
||||
|
||||
.cell_text {
|
||||
padding-right: $space_basic;
|
||||
padding-left: $space_basic;
|
||||
padding-right: config.$space_basic;
|
||||
padding-left: config.$space_basic;
|
||||
|
||||
div {
|
||||
width: 100%;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue