Kenia 12e2c93e6b ui: Redesign - Service List page with Gateways (#7781)
* Return all services except Proxies

* Add Gateway icon to the codebase

* Create and implement ConsulExternalSource component

* Fix tests to work with new mock data and add a Gateway test

* Update consul-api-double to 2.14.3
2020-05-12 17:14:42 +00:00

50 lines
1.0 KiB
SCSS

@import '../base/components/pill/index';
td strong {
@extend %pill;
margin-right: 3px;
}
// For the moment pills with classes are iconed ones
%pill:not([class]) {
@extend %frame-gray-900;
}
%pill[class] {
padding-left: 0;
margin-right: 16px;
}
%pill[class]::before {
@extend %as-pseudo;
margin-right: 3px;
}
%pill.policy::before {
@extend %with-file-fill-icon;
opacity: 0.3;
}
%pill.policy-management::before {
@extend %with-star-icon;
}
%pill.policy-service-identity::before {
@extend %with-service-identity-icon;
}
%pill.role::before {
@extend %with-user-plain-icon;
opacity: 0.3;
}
// TODO: These are related to the pill icons, but also to the tables
// All of this icon assigning stuff should probably go in the eventual
// refactored /components/icons.scss file
td.policy-service-identity a::after {
@extend %with-service-identity-icon, %as-pseudo;
margin-left: 3px;
}
td.policy-management a::after {
@extend %with-star-icon, %as-pseudo;
margin-left: 3px;
}
.consul-external-source,
.consul-kind {
@extend %reduced-pill;
}