2020-09-18 11:14:06 +01:00
|
|
|
%pill-allow:before,
|
|
|
|
%pill-deny:before,
|
|
|
|
%pill-l7:before {
|
|
|
|
@extend %as-pseudo;
|
|
|
|
margin-right: 5px;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
%pill-allow {
|
|
|
|
color: $green-800;
|
|
|
|
background-color: $green-100;
|
|
|
|
}
|
|
|
|
%pill-allow::before {
|
|
|
|
@extend %with-arrow-right-color-mask;
|
|
|
|
}
|
|
|
|
%pill-deny {
|
|
|
|
color: $red-800;
|
|
|
|
background-color: $red-100;
|
|
|
|
}
|
|
|
|
%pill-deny::before {
|
|
|
|
@extend %with-deny-color-mask;
|
|
|
|
}
|
|
|
|
%pill-l7 {
|
|
|
|
@extend %frame-gray-900;
|
|
|
|
}
|
|
|
|
%pill-l7::before {
|
|
|
|
@extend %with-layers-mask;
|
|
|
|
}
|
2020-04-08 13:09:36 -04:00
|
|
|
td strong {
|
2020-07-07 19:03:15 +01:00
|
|
|
@extend %pill, %frame-gray-900;
|
2019-05-01 19:09:29 +01:00
|
|
|
margin-right: 3px;
|
|
|
|
}
|
2020-05-05 12:29:51 -04:00
|
|
|
|
2020-06-17 10:25:54 +01:00
|
|
|
span.policy-service-identity,
|
2020-06-23 10:12:04 +01:00
|
|
|
span.policy-node-identity,
|
2020-05-05 12:29:51 -04:00
|
|
|
.consul-external-source,
|
2020-08-28 09:21:03 -04:00
|
|
|
.consul-kind,
|
|
|
|
.leader {
|
2020-05-05 12:29:51 -04:00
|
|
|
@extend %reduced-pill;
|
|
|
|
}
|
2020-06-23 10:12:04 +01:00
|
|
|
span.policy-service-identity::before,
|
|
|
|
span.policy-node-identity::before {
|
|
|
|
display: inline-block;
|
|
|
|
width: auto;
|
2020-06-24 09:54:16 -04:00
|
|
|
vertical-align: baseline;
|
2020-06-23 10:12:04 +01:00
|
|
|
}
|
|
|
|
span.policy-node-identity::before {
|
|
|
|
content: 'Node Identity: ';
|
|
|
|
}
|
2020-06-17 10:25:54 +01:00
|
|
|
span.policy-service-identity::before {
|
2020-06-23 10:12:04 +01:00
|
|
|
content: 'Service Identity: ';
|
2020-06-17 10:25:54 +01:00
|
|
|
}
|