c5d0216939
* Add all the new data required for NodeIdentities * Add potential NodeIdentity to the token list component * Amend the policy-form/selector to allow node identity creation * Fix up CSS for radio buttons and select label * Add node-identity policy template component * Fix up and add acceptance tests for NodeIndentities * Make sure policy previews take node identities into account * Only show certain policy markup if those we have those policies * Potentially temporarily hide dt's that don't have icons yet
35 lines
640 B
SCSS
35 lines
640 B
SCSS
label span {
|
|
@extend %user-select-none;
|
|
}
|
|
.has-error {
|
|
@extend %form-element-error;
|
|
}
|
|
.type-toggle {
|
|
@extend %form-element, %sliding-toggle;
|
|
}
|
|
.checkbox-group {
|
|
@extend %checkbox-group;
|
|
}
|
|
%main-content form {
|
|
@extend %form;
|
|
}
|
|
%form table,
|
|
%radio-group,
|
|
%checkbox-group,
|
|
%main-content form dl {
|
|
@extend %form-row;
|
|
}
|
|
%radio-group label,
|
|
%main-content .type-select,
|
|
%main-content .type-password,
|
|
%main-content .type-text {
|
|
@extend %form-element;
|
|
}
|
|
%app-view-content form:not(.filter-bar) [role='radiogroup'],
|
|
%modal-window [role='radiogroup'] {
|
|
@extend %radio-group;
|
|
}
|
|
%sliding-toggle + .checkbox-group {
|
|
margin-top: -1em;
|
|
}
|