+
+ Config TLS refresh
{osqueryData.config_tls_refresh}
-
-
Logger TLS period
{osqueryData.logger_tls_period}
-
-
Distributed interval
{osqueryData.distributed_interval}
diff --git a/frontend/pages/hosts/HostDetailsPage/_styles.scss b/frontend/pages/hosts/HostDetailsPage/_styles.scss
index 126722c77e..f56ed3adba 100644
--- a/frontend/pages/hosts/HostDetailsPage/_styles.scss
+++ b/frontend/pages/hosts/HostDetailsPage/_styles.scss
@@ -1,17 +1,34 @@
+a {
+ font-size: $x-small;
+ color: $core-vibrant-blue;
+ font-weight: $bold;
+ text-decoration: none;
+}
+
.host-details {
display: flex;
- flex-direction: column;
+ flex-wrap: wrap;
+ flex-grow: 1;
+ align-content: flex-start;
padding-bottom: 50px;
min-width: 0;
+ background-color: $ui-off-white;
+ gap: $pad-large;
.section {
+ flex: 100%;
display: flex;
flex-direction: column;
- margin: $pad-xxlarge 0 0;
+ background-color: $core-white;
+ border-radius: 16px;
+ border: 1px solid $ui-fleet-blue-15;
+ padding: $pad-xxlarge;
+ box-shadow: 0px 3px 0px rgba(226, 228, 234, 0.4);
&__header {
- margin: 0 0 $pad-medium;
font-size: $medium;
+ font-weight: bold;
+ margin: 0 0 $pad-medium 0;
}
.info {
@@ -94,7 +111,8 @@
}
}
- .about {
+ .about,
+ .osquery {
.info {
&__item {
&--about {
@@ -107,18 +125,25 @@
display: flex;
flex-direction: column;
margin-right: $pad-xxlarge;
+ }
+ &__data {
+ margin-bottom: $pad-medium;
- span {
- margin-bottom: $pad-medium;
-
- &:last-child {
- margin-bottom: 0;
- }
+ &:last-child {
+ margin-bottom: 0;
}
}
}
}
+ .col-50 {
+ flex: 2;
+ }
+
+ .col-25 {
+ flex: 1;
+ }
+
.status {
color: $core-fleet-black;
text-transform: capitalize;
@@ -224,4 +249,9 @@
white-space: nowrap;
}
}
+
+ #back-chevron {
+ width: 12px;
+ margin-right: 10px;
+ }
}