mirror of
https://github.com/status-im/consul.git
synced 2025-02-05 18:33:48 +00:00
52 lines
954 B
SCSS
52 lines
954 B
SCSS
%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;
|
|
}
|
|
td strong {
|
|
@extend %pill, %frame-gray-900;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
span.policy-service-identity,
|
|
span.policy-node-identity,
|
|
.consul-external-source,
|
|
.consul-kind,
|
|
.leader {
|
|
@extend %reduced-pill;
|
|
}
|
|
span.policy-service-identity::before,
|
|
span.policy-node-identity::before {
|
|
display: inline-block;
|
|
width: auto;
|
|
vertical-align: baseline;
|
|
}
|
|
span.policy-node-identity::before {
|
|
content: 'Node Identity: ';
|
|
}
|
|
span.policy-service-identity::before {
|
|
content: 'Service Identity: ';
|
|
}
|