958991db94
* Create ConsulServiceInstanceList with styling and test * Implement ConsulServiceInstanceList to Service Detail page * Implement ConsulExternalSource to Services Show page header * Update services/show page object * Update the styling of CompositeRow * Refactor ConsulServiceList component and styling * Update ConsulExternalSource to say 'Registered via...' * Upgrade consul-api-double to patch 2.14.1 * Fix up tests to not use Kind in service models * Update ListCollection with clickFirstAnchor action * Add $typo-size-450 to typography base variables
26 lines
453 B
SCSS
26 lines
453 B
SCSS
%composite-row {
|
|
cursor: pointer;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
padding: 12px;
|
|
padding-right: 0;
|
|
border: 1px solid;
|
|
}
|
|
%composite-row-intent {
|
|
border: 1px solid;
|
|
position: relative;
|
|
}
|
|
%composite-row-detail {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
}
|
|
%composite-row-detail * {
|
|
white-space: nowrap;
|
|
}
|
|
%composite-row-detail > li:not(:first-child) {
|
|
margin-left: 12px;
|
|
}
|
|
%composite-row-detail .node::before {
|
|
margin-top: 2px;
|
|
}
|