open-consul/ui-v2/app/styles/components/pill.scss
Kenia 6a581de3cb
ui: Refactor composite rows to use description lists and add Tooltips (#8175)
* Update Consul Service List composite rows with Tooltips and description lists

* Update Consul Service Instance List composite rows with Tooltips and description lists

* Removed line height in reduced pill to match the description lists in the composite rows
2020-06-24 09:54:16 -04:00

24 lines
463 B
SCSS

td strong {
@extend %pill;
margin-right: 3px;
}
span.policy-service-identity,
span.policy-node-identity,
.consul-external-source,
.consul-kind {
@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: ';
}