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.
57 lines
847 B
SCSS
57 lines
847 B
SCSS
.admin .machine-learning-scripts {
|
|
|
|
.alert > :first-child {
|
|
@include has-fa-icon(ban, solid);
|
|
}
|
|
|
|
.success > :first-child {
|
|
@include has-fa-icon(check-circle, solid);
|
|
}
|
|
|
|
.warning > :first-child {
|
|
@include has-fa-icon(hourglass-half, solid);
|
|
}
|
|
|
|
.alert,
|
|
.success,
|
|
.warning {
|
|
> :first-child::before {
|
|
margin-right: $font-icon-margin;
|
|
}
|
|
}
|
|
|
|
dl {
|
|
font-size: $base-font-size;
|
|
|
|
dt,
|
|
dd {
|
|
display: inline;
|
|
}
|
|
|
|
* + dt::before {
|
|
content: "";
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
form {
|
|
max-width: calc(#{$global-width} * 3 / 4);
|
|
}
|
|
|
|
select {
|
|
max-width: 100%;
|
|
width: auto;
|
|
}
|
|
|
|
[type=submit] {
|
|
@include regular-button;
|
|
display: block;
|
|
margin-bottom: 0;
|
|
margin-top: $line-height;
|
|
|
|
&.cancel {
|
|
@include hollow-button($alert-color);
|
|
}
|
|
}
|
|
}
|