mirror of
https://github.com/status-im/consul.git
synced 2025-02-12 21:56:46 +00:00
* Begin refactoring CSS into component folders. Moved most components into layout/skin folders, left out a couple of ones I want to think about more. * Adjust grays based on recent Structure changes * Switch to fullscreen layout for lists and detail, left aligned forms (#4435) * Specifically use the 'actions_close' label, not just the :last-child (actions-group) * Replace some non-var-ed colours in vaults code skin, plus prefixing (black and white)
25 lines
379 B
SCSS
25 lines
379 B
SCSS
%tab-nav label {
|
|
cursor: pointer;
|
|
}
|
|
%tab-nav ul {
|
|
border: 0;
|
|
}
|
|
%tab-nav a {
|
|
border-bottom: $decor-border-300;
|
|
}
|
|
%tab-nav a {
|
|
border-color: $ui-color-transparent;
|
|
color: $ui-gray-500;
|
|
}
|
|
%tab-nav a:hover,
|
|
%tab-nav a:focus,
|
|
%tab-nav a:active,
|
|
%tab-nav .selected a {
|
|
border-color: $brand-magenta-600;
|
|
color: $brand-magenta-600;
|
|
}
|
|
|
|
%tab-nav a {
|
|
white-space: nowrap;
|
|
}
|