The division operator `/` from Sass is deprecated because `/` is used in CSS for uses other than dividing numbers. That's why we were getting many warnings like: ``` Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($line-height, 2) or calc($line-height / 2) More info and automated migrator: https://sass-lang.com/d/slash-div margin-top: $line-height / 2; ``` Since using math.div makes the code harder to read and `calc` is universally supported by all browsers (although the implementation in Internet Explorer doesn't work in certain cases), we're using `calc` when assigning the value to a CSS property. However, we're also using divisions when assigning Sass variables, and in those cases using `calc` is trickier because sometimes these variables are used in other operations. We'll handle these cases in the next commit.
88 lines
1.5 KiB
SCSS
88 lines
1.5 KiB
SCSS
.subnavigation {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
@include breakpoint(medium) {
|
|
@include background-with-text-contrast($subnavigation, subnavigation);
|
|
flex-direction: row;
|
|
padding-bottom: 0;
|
|
|
|
> :first-child {
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
|
|
li {
|
|
@include breakpoint(medium) {
|
|
display: inline-block;
|
|
margin-right: rem-calc(20);
|
|
}
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
display: inline-block;
|
|
padding-bottom: calc(#{$line-height} / 2);
|
|
padding-top: calc(#{$line-height} / 2);
|
|
position: relative;
|
|
text-align: left;
|
|
|
|
@include breakpoint(medium) {
|
|
display: block;
|
|
font-weight: bold;
|
|
|
|
&:hover {
|
|
@include anchor-color;
|
|
}
|
|
|
|
&.is-active {
|
|
@include brand-color;
|
|
border-bottom: 2px solid;
|
|
margin-bottom: 1px;
|
|
}
|
|
}
|
|
|
|
&:focus {
|
|
z-index: 1;
|
|
}
|
|
}
|
|
|
|
.input-group {
|
|
padding-top: calc(#{$line-height} / 4);
|
|
|
|
@include breakpoint(medium) {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.input-group-field {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
.input-group-button {
|
|
line-height: $line-height * 1.5;
|
|
padding-bottom: 0;
|
|
|
|
button {
|
|
@include background-with-text-contrast($border);
|
|
border: 1px solid #ccc;
|
|
border-left: 0;
|
|
height: $line-height * 1.5;
|
|
line-height: $line-height * 1.5;
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
input {
|
|
height: $line-height * 1.5 !important;
|
|
margin-bottom: 0;
|
|
margin-right: 0;
|
|
width: 100%;
|
|
}
|
|
}
|