mirror of
https://github.com/status-im/consul.git
synced 2025-01-22 11:40:06 +00:00
4c58f9402e
* Add all the new data required for NodeIdentities * Add potential NodeIdentity to the token list component * Amend the policy-form/selector to allow node identity creation * Fix up CSS for radio buttons and select label * Add node-identity policy template component * Fix up and add acceptance tests for NodeIndentities * Make sure policy previews take node identities into account * Only show certain policy markup if those we have those policies * Potentially temporarily hide dt's that don't have icons yet
39 lines
1.1 KiB
SCSS
39 lines
1.1 KiB
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 */
|
|
%composite-row.linkable,
|
|
.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),
|
|
.consul-token-list > ul > li:not(:first-child) {
|
|
@extend %with-composite-row-intent;
|
|
}
|
|
/*TODO: This hides the icons-less dt's in the below lists as */
|
|
/* they don't have tooltips */
|
|
.consul-token-list > ul > li:not(:first-child) dt {
|
|
display: none;
|
|
}
|
|
/* TODO: the service list has a 1px offset */
|
|
.consul-service-list li > div:first-child > dl:first-child dd {
|
|
margin-top: 1px;
|
|
}
|
|
.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;
|
|
}
|