mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
## #21566 - Host details updates for Uninstall packages details > software page. Full tasks outlined in the issue, [Figma here](https://www.figma.com/design/ToQaK2yUJwDyzagTdrbOfX/%2320320-Uninstall-packages?node-id=5364-13173&m=dev) **Updated install status tooltips:**  **Uninstall action:**  **Update install details:**  ## #21931 - updated specs for install/uninstall states ## #21568 - activity feed items for Uninstall    ## #21567 - Uninstall details modal  _remaining TODO_: - [x] manually QA 'failed' states - [x] determine where to source timestamp from for uninstall activities - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com> Co-authored-by: Victor Lyuboslavsky <victor@fleetdm.com>
23 lines
438 B
SCSS
23 lines
438 B
SCSS
.software-uninstall-details-modal {
|
|
&__modal-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
}
|
|
&__status-message {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: $pad-small;
|
|
margin: 0;
|
|
.icon {
|
|
align-self: flex-start;
|
|
}
|
|
}
|
|
&__script-output {
|
|
.textarea {
|
|
margin-top: $pad-medium;
|
|
overflow-wrap: break-word;
|
|
font-family: "SourceCodePro", $monospace;
|
|
}
|
|
}
|
|
}
|