mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
- Replace uses of deprecated Bourbon helpers with raw CSS
- Add autoprefixer into the build chain to prefix the now removed helpers
This process was achieved by running through each of the deprecation warnings and using the following bash function to replace it in all files:
```
function bourbon-deprecate() {
grep -rl "@include $1" ./frontend --exclude-dir=.git | xargs sed -i '' -E "s/@include $1[(](.*)[)]/$1: \1/g"
}
```
For some helpers, this did not result in valid CSS, so manual modifications were made.
Closes #1189 #1274
83 lines
1.6 KiB
SCSS
83 lines
1.6 KiB
SCSS
.input-field {
|
|
transition: border 150ms ease-in-out, box-shadow 150ms ease-in-out;
|
|
line-height: 34px;
|
|
background-color: $white;
|
|
border: solid 1px $accent-medium;
|
|
font-size: 16px;
|
|
padding: $pad-xsmall 12px;
|
|
color: $text-dark;
|
|
font-family: 'Oxygen', sans-serif;
|
|
box-sizing: border-box;
|
|
height: 40px;
|
|
|
|
::placeholder {
|
|
color: $accent-text;
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
box-shadow: inset 0 0 8px 0 rgba($black, 0.1);
|
|
border-color: $link-light;
|
|
border-bottom-color: $brand;
|
|
}
|
|
|
|
&--disabled {
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
&--error {
|
|
transition: background 150ms ease-in-out, color 150ms ease-in-out;
|
|
border-color: $alert;
|
|
background-color: $alert-light;
|
|
color: $white;
|
|
box-shadow: inset 0 -4px 4px 0 rgba($black, 0.1);
|
|
|
|
&:focus {
|
|
box-shadow: inset 0 0 8px 0 rgba($black, 0.1);
|
|
border-bottom-color: $alert;
|
|
background-color: $white;
|
|
color: $text-dark;
|
|
}
|
|
}
|
|
|
|
&--password {
|
|
letter-spacing: 7px;
|
|
}
|
|
|
|
&__textarea {
|
|
min-height: 100px;
|
|
max-width: 100%;
|
|
display: block;
|
|
}
|
|
|
|
&__label {
|
|
display: block;
|
|
font-size: $base;
|
|
font-weight: $light;
|
|
color: $text-dark;
|
|
margin-bottom: $pad-xsmall;
|
|
|
|
&--error {
|
|
color: $alert;
|
|
}
|
|
}
|
|
|
|
&__wrapper {
|
|
margin-bottom: $pad-base;
|
|
}
|
|
|
|
&__hint {
|
|
font-size: 14px;
|
|
font-weight: $normal;
|
|
line-height: 1.57;
|
|
letter-spacing: 1px;
|
|
color: $accent-text;
|
|
|
|
code {
|
|
color: $brand;
|
|
background-color: $accent-light;
|
|
padding: 2px;
|
|
font-family: 'SourceCodePro', $monospace;
|
|
}
|
|
}
|
|
}
|