f52e1f607d
Adds visibility for `Expose.Checks` config setting for proxies. 1. Adds an 'Exposed Path' tab to the proxy detail page to show the user information on exposed paths. 2. If the users has exposed their healthchecks we also add this information to the Service detail page for this proxy (only for http2 and gRPC checks)
86 lines
1.6 KiB
SCSS
86 lines
1.6 KiB
SCSS
%healthcheck-output {
|
|
display: flex;
|
|
|
|
padding: 20px 16px;
|
|
padding-right: 24px;
|
|
|
|
margin-bottom: 24px;
|
|
}
|
|
%healthcheck-output::before {
|
|
margin-right: 15px;
|
|
}
|
|
%healthcheck-output > div {
|
|
flex: 1 1 auto;
|
|
}
|
|
%healthcheck-output header,
|
|
%healthcheck-output dl:last-of-type {
|
|
width: 100%;
|
|
}
|
|
%healthcheck-output header {
|
|
margin-bottom: 0.9em;
|
|
}
|
|
%healthcheck-output > div {
|
|
// 100% minus the width of the icon space (26)
|
|
width: calc(100% - 26px);
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
}
|
|
%healthcheck-output dl {
|
|
min-width: 110px;
|
|
}
|
|
%healthcheck-output dl > * {
|
|
display: block;
|
|
width: auto;
|
|
position: static;
|
|
padding-left: 0;
|
|
}
|
|
%healthcheck-output dt {
|
|
margin-bottom: 0;
|
|
}
|
|
%healthcheck-output dd {
|
|
position: relative;
|
|
}
|
|
|
|
%healthcheck-output dl:nth-last-of-type(2) {
|
|
width: 50%;
|
|
}
|
|
%healthcheck-output dl:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
%healthcheck-output dl:last-of-type dt {
|
|
margin-bottom: 0.3em;
|
|
}
|
|
|
|
%healthcheck-output pre {
|
|
padding: 12px;
|
|
padding-right: 40px;
|
|
white-space: pre-wrap;
|
|
position: relative;
|
|
}
|
|
%healthcheck-output pre code {
|
|
word-wrap: break-word;
|
|
}
|
|
%healthcheck-output .with-feedback {
|
|
position: absolute;
|
|
right: 0.5em;
|
|
top: 1em;
|
|
}
|
|
@media #{$--lt-spacious-healthcheck-output} {
|
|
%healthcheck-output {
|
|
padding-top: 15px;
|
|
padding-bottom: 15px;
|
|
padding-left: 14px;
|
|
padding-right: 19px;
|
|
}
|
|
%healthcheck-output::before {
|
|
margin-right: 8px;
|
|
}
|
|
%healthcheck-output dl:nth-last-of-type(2) {
|
|
width: 100%;
|
|
}
|
|
%healthcheck-output dl:not(:last-of-type) {
|
|
margin-right: 0;
|
|
}
|
|
}
|