2020-05-12 21:34:47 +00:00
|
|
|
// Services - Linked Services tab
|
2020-05-13 15:28:11 +00:00
|
|
|
// TODO - move this into composite-row
|
|
|
|
.consul-gateway-services-list > ul {
|
|
|
|
@extend %consul-gateway-services-list;
|
2020-05-12 21:34:47 +00:00
|
|
|
}
|
2020-05-13 15:28:11 +00:00
|
|
|
%consul-gateway-services-list > li:not(:first-child) {
|
2020-05-12 21:34:47 +00:00
|
|
|
@extend %gateway-service-row;
|
|
|
|
}
|
|
|
|
%gateway-service-row {
|
|
|
|
@extend %composite-row, %with-composite-row-intent;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Service Detail - Proxy Info tab
|
2020-05-07 13:57:15 +00:00
|
|
|
.proxy-upstreams > ul {
|
|
|
|
@extend %proxy-upstreams-list;
|
2020-05-13 15:28:11 +00:00
|
|
|
border-top: 1px solid $gray-200;
|
2020-05-07 13:57:15 +00:00
|
|
|
}
|
|
|
|
%proxy-upstreams-list > li {
|
|
|
|
@extend %composite-row;
|
|
|
|
}
|
|
|
|
.proxy-exposed-paths tbody tr {
|
|
|
|
@extend %proxy-exposed-paths-row;
|
|
|
|
cursor: default !important;
|
|
|
|
}
|
|
|
|
%proxy-exposed-paths-row:hover {
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
|
|
|
%proxy-exposed-paths-row .combined-address button:hover {
|
|
|
|
// In this case we do not need a background on the icon
|
|
|
|
background-color: transparent !important;
|
|
|
|
}
|