mirror of
https://github.com/fleetdm/fleet
synced 2026-05-18 14:38:53 +00:00
relates to #18326 Add ability to add software from the UI. This includes - new button on software page to open add software modal - new add software modal to add software. > Note: still need to do form error validation but will do on another PR - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [x] Manual QA for all new/changed functionality
43 lines
646 B
SCSS
43 lines
646 B
SCSS
.add-software-form {
|
|
|
|
&__uploading-message {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
gap: $pad-large;
|
|
|
|
p {
|
|
margin: 0
|
|
}
|
|
}
|
|
|
|
&__form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $pad-large;
|
|
}
|
|
|
|
&__file-uploader {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
&__selected-file {
|
|
display: flex;
|
|
gap: $pad-medium;
|
|
align-items: center;
|
|
width: 100%;
|
|
text-align: left;
|
|
|
|
&--details {
|
|
&--name {
|
|
font-size: $x-small;
|
|
font-weight: $bold;
|
|
}
|
|
|
|
&--platform {
|
|
font-size: $xx-small;
|
|
color: $ui-fleet-black-75;
|
|
}
|
|
}
|
|
}
|
|
}
|