mirror of
https://github.com/fleetdm/fleet
synced 2026-05-03 21:38:24 +00:00
relates to #12926 This implements the changes to the Controls page that add the windows Bitlocker functionality. There is some work that needs to be complete when the API is done. For now we are mocking the new disk encryption API response **new column for windows hosts:**  also includes various other changes behind the scenes that include windows hosts into the disk encryption as well as changes to the profiles status summary to use StatusIndicatorWithIcon - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [x] Manual QA for all new/changed functionality
18 lines
327 B
SCSS
18 lines
327 B
SCSS
.status-indicator-with-icon {
|
|
// default layout is horizontal
|
|
&__value {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
vertical-align: middle;
|
|
|
|
.icon {
|
|
margin-right: $pad-xsmall;
|
|
}
|
|
}
|
|
|
|
// overrides for different layout
|
|
&__value-vertical {
|
|
flex-direction: column;
|
|
gap: $pad-xsmall;
|
|
}
|
|
}
|