UI: Text change and clarity Node Health > Health Checks (#5115)
Text change Node Health > Health Checks Also adds an info icon and tooltip to Health Checks column header
This commit is contained in:
parent
788bf610ae
commit
5eb5065f70
|
@ -36,3 +36,36 @@ td dt.critical,
|
|||
td dt.critical + dd {
|
||||
color: $ui-color-failure;
|
||||
}
|
||||
/* Header Tooltips/Icon*/
|
||||
th {
|
||||
overflow: visible;
|
||||
}
|
||||
th span {
|
||||
@extend %tooltip;
|
||||
@extend %with-info;
|
||||
margin-left: 12px;
|
||||
top: 3px;
|
||||
width: 23px;
|
||||
height: 15px;
|
||||
}
|
||||
th span:after {
|
||||
left: -8px;
|
||||
}
|
||||
th span em::after {
|
||||
@extend %tooltip-tail;
|
||||
@extend %blink-in-fade-out;
|
||||
top: auto !important;
|
||||
bottom: -13px;
|
||||
}
|
||||
th span em {
|
||||
@extend %tooltip-bubble;
|
||||
@extend %blink-in-fade-out;
|
||||
width: 250px;
|
||||
font-style: normal;
|
||||
white-space: normal !important;
|
||||
}
|
||||
|
||||
th span:hover em::after,
|
||||
th span:hover em {
|
||||
@extend %blink-in-fade-out-active;
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
}}
|
||||
{{#block-slot 'header'}}
|
||||
<th style={{remainingWidth}}>Service</th>
|
||||
<th style={{totalWidth}}>Node Health</th>
|
||||
<th style={{totalWidth}}>Health Checks<span><em>The number of health checks for the service on all nodes</em></span></th>
|
||||
<th style={{remainingWidth}}>Tags</th>
|
||||
{{/block-slot}}
|
||||
{{#block-slot 'row'}}
|
||||
|
|
Loading…
Reference in New Issue