d8c14b51a3
* Create ConsulNodeList component * Implement ConsulNodeList and the new Search/Sort to Node List page * Minor styling fix to align the first icons in composite row * Fix-up and add tests for the redesigned Node List page * Add Leader to composite row for Node List page * Add test for node leader
25 lines
489 B
SCSS
25 lines
489 B
SCSS
td strong {
|
|
@extend %pill, %frame-gray-900;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
span.policy-service-identity,
|
|
span.policy-node-identity,
|
|
.consul-external-source,
|
|
.consul-kind,
|
|
.leader {
|
|
@extend %reduced-pill;
|
|
}
|
|
span.policy-service-identity::before,
|
|
span.policy-node-identity::before {
|
|
display: inline-block;
|
|
width: auto;
|
|
vertical-align: baseline;
|
|
}
|
|
span.policy-node-identity::before {
|
|
content: 'Node Identity: ';
|
|
}
|
|
span.policy-service-identity::before {
|
|
content: 'Service Identity: ';
|
|
}
|