8ef7bd7ddb
fix storybook demos add attributes tab to realm roles section use TableComposable fix formatting css updates fix up styling of role attributes table fix check-types erros logic from call with Jeff clean up, format, make eslint proud delete roledetails call with Erik add delete function and css changes fix storybook demos and format make key input disabled once new attribute is created minus icon gray address PR feedback from Sarah set add and save buttons to disabled when new input field is empty fix save/add fix onChange formState rebase with resolved conflicts fix formatting remove !important Update RealmRolesSection.css Update src/realm-roles/RoleAttributes.tsx Co-authored-by: Erik Jan de Wit <erikjan.dewit@gmail.com> address PR feedback from Sarah and Erik fix paths and use error msg from response remove log stmt fix lint remove minLength
24 lines
835 B
CSS
24 lines
835 B
CSS
.kc-role-attributes__table {
|
|
/* even though the table is borderless, make the border under the th transparent */
|
|
--pf-c-table--border-width--base: 0;
|
|
--pf-c-table--m-compact--cell--first-last-child--PaddingLeft: 0;
|
|
}
|
|
|
|
.kc-role-attributes__plus-icon {
|
|
/* shift the button left to adjust for table cell padding */
|
|
margin-left: calc(var(--pf-global--spacer--md) * -1);
|
|
}
|
|
|
|
.pf-c-button.kc-role-attributes__minus-icon {
|
|
/* shift the button left to adjust for table cell padding */
|
|
margin-left: calc(var(--pf-global--spacer--md) * -1);
|
|
color: var(--pf-c-button--m-plain--Color);
|
|
}
|
|
|
|
.kc-role-attributes__action-group {
|
|
/* subtract the padding at the bottom of the table from the action group margin */
|
|
--pf-c-form__group--m-action--MarginTop: calc(
|
|
var(--pf-global--spacer--2xl) - var(--pf-global--spacer--sm)
|
|
);
|
|
|
|
}
|