acf975ca1f
* ui: Move individual component types into a single %composite-list plus 1. Removes all out separate CSS components (that match HTML components) to favour not having those separate for the moemnt at least 2. Reuses <ConsulServiceList /> component for Terminating Gateways > Linked Services * ui: Tweak breadcrumb spacing for '/' separator * Fix up the tests i.e. services per tab so we can call them all services
29 lines
840 B
SCSS
29 lines
840 B
SCSS
@import './composite-row/index';
|
|
|
|
.proxy-upstreams > ul > li,
|
|
.proxy-exposed-paths > ul > li,
|
|
.list-collection > ul > li:not(:first-child) {
|
|
@extend %composite-row;
|
|
}
|
|
/* hoverable rows */
|
|
.consul-upstream-list > ul > li:not(:first-child),
|
|
.consul-gateway-service-list > ul > li:not(:first-child),
|
|
.consul-service-instance-list > ul > li:not(:first-child),
|
|
.consul-service-list > ul > li:not(:first-child) {
|
|
@extend %with-composite-row-intent;
|
|
}
|
|
.proxy-exposed-paths tbody tr {
|
|
cursor: default !important;
|
|
}
|
|
.proxy-exposed-paths tbody tr:hover {
|
|
box-shadow: none !important;
|
|
}
|
|
.proxy-exposed-paths tbody tr .combined-address button:hover {
|
|
// In this case we do not need a background on the icon
|
|
background-color: $transparent !important;
|
|
}
|
|
.proxy-exposed-paths > ul,
|
|
.proxy-upstreams > ul {
|
|
border-top: 1px solid $gray-200;
|
|
}
|