mirror of
https://github.com/fleetdm/fleet
synced 2026-05-10 02:30:56 +00:00
For #25464 Implements the UI for viewing certification details on the host details and my device pages. This includes: **Certs card and table on host details and my device page**  **Cert details modal**  - includes some work around normalising the details section card header styles on these pages. - includes extending DataSet component to add a `horizontal` orientation when rendering the data > NOTE: We still need to integrate with the API endpoints when they are ready. - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. - [ ] Added/updated automated tests - [x] Manual QA for all new/changed functionality
29 lines
448 B
SCSS
29 lines
448 B
SCSS
.data-set {
|
|
font-size: $x-small;
|
|
|
|
&__horizontal {
|
|
display: flex;
|
|
gap: $pad-small;
|
|
}
|
|
|
|
// ff only
|
|
@-moz-document url-prefix() {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
|
|
dt {
|
|
font-weight: $bold;
|
|
display: flex;
|
|
gap: $pad-xsmall; // For deprecated sandbox icons
|
|
}
|
|
|
|
dd {
|
|
display: flex;
|
|
gap: $pad-small;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|