open-consul/ui-v2/app/styles/base/components/table/skin.scss
John Cowen 31f36ce096 ui: Namespace Support (#6639)
Adds namespace support to the UI:

1. Namespace CRUD/management
2. Show Namespace in relevant areas (intentions, upstreams)
3. Main navigation bar improvements
4. Logic/integration to interact with a new `internal/acl/authorize` endpoint
2019-12-18 12:26:47 +00:00

27 lines
508 B
SCSS

%table th,
%table td {
border-bottom: $decor-border-100;
}
%table th {
border-color: $gray-300;
}
%table td {
border-color: $gray-200;
color: $gray-500;
}
%table th,
%table td strong {
color: $gray-600;
}
/* TODO: Add to native selector `tbody th` - will involve moving all
* current th's to `thead th` and changing the templates
* at whichpoint we can probably remove the %table a selector from here
*/
%table a,
%tbody-th {
color: $gray-900;
}
%table td:first-child {
@extend %tbody-th;
}