mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +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
28 lines
413 B
SCSS
28 lines
413 B
SCSS
.scheduled-queries-list-wrapper {
|
|
flex-grow: 1;
|
|
padding: $pad-small $pad-base;
|
|
margin-bottom: $base;
|
|
|
|
&__query-count {
|
|
margin: 0 0 15px;
|
|
}
|
|
|
|
&__queries-list-wrapper {
|
|
margin-top: $pad-base;
|
|
clear: both;
|
|
}
|
|
|
|
&__search-queries-input {
|
|
float: left;
|
|
display: inline-block;
|
|
width: '400px';
|
|
}
|
|
|
|
&__query-btn {
|
|
float: right;
|
|
}
|
|
|
|
&__search-queries {
|
|
float: left;
|
|
}
|
|
}
|