mirror of
https://github.com/status-im/consul.git
synced 2025-01-26 05:29:55 +00:00
482426b13e
Adds support for ACL Roles and Service Identities CRUD, along with necessary changes to Tokens, and the CSS improvements required. Also includes refinements/improvements for easier testing of deeply nested components. 1. ember-data adapter/serializer/model triplet for Roles 2. repository, form/validations and searching filter for Roles 3. Moves potentially, repeated, or soon to to repeated functionality into a mixin (mainly for 'many policy' relationships) 4. A few styling tweaks for little edge cases around roles 5. Router additions, Route, Controller and templates for Roles Also see: * UI: ACL Roles cont. plus Service Identities (#5661 and #5720)
39 lines
845 B
SCSS
39 lines
845 B
SCSS
%action-group label:first-of-type {
|
|
@extend %toggle-button;
|
|
}
|
|
%action-group input[type='radio']:checked + label:first-of-type {
|
|
/* frame-gray */
|
|
background-color: $gray-050;
|
|
}
|
|
%action-group label,
|
|
%action-group-action {
|
|
cursor: pointer;
|
|
}
|
|
%action-group label:first-of-type::after {
|
|
@extend %with-more-horizontal-icon, %as-pseudo;
|
|
opacity: 0.7;
|
|
}
|
|
%action-group ul {
|
|
border: $decor-border-100;
|
|
border-radius: $radius-small;
|
|
box-shadow: 0 2px 7px rgba(0, 0, 0, 0.21);
|
|
}
|
|
%action-group ul::before {
|
|
border-top: $decor-border-100;
|
|
border-left: $decor-border-100;
|
|
}
|
|
%action-group ul,
|
|
%action-group ul::before {
|
|
border-color: $color-action;
|
|
}
|
|
%action-group-action {
|
|
background-color: $white;
|
|
}
|
|
%action-group-action:hover {
|
|
@extend %frame-blue-800;
|
|
}
|
|
%action-group ul,
|
|
%action-group ul::before {
|
|
background-color: $white;
|
|
}
|