parent
125fd1fe3d
commit
32492152aa
7 changed files with 114 additions and 129 deletions
|
@ -10,6 +10,12 @@
|
||||||
margin-bottom: 52px;
|
margin-bottom: 52px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input[type='checkbox'] {
|
||||||
|
height: 20px;
|
||||||
|
width: 20px;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
label.pf-c-form__label {
|
label.pf-c-form__label {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
}
|
}
|
||||||
|
@ -46,8 +52,8 @@ label.pf-c-form__label {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
td.pf-c-table__check > input {
|
td.pf-c-table__check > input[type='checkbox'] {
|
||||||
vertical-align: baseline;
|
vertical-align: text-bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pf-c-table.tbody.pf-c-table__check > input {
|
.pf-c-table.tbody.pf-c-table__check > input {
|
||||||
|
|
|
@ -15,6 +15,7 @@ import {
|
||||||
Table,
|
Table,
|
||||||
TableBody,
|
TableBody,
|
||||||
TableHeader,
|
TableHeader,
|
||||||
|
TableProps,
|
||||||
TableVariant,
|
TableVariant,
|
||||||
} from "@patternfly/react-table";
|
} from "@patternfly/react-table";
|
||||||
import { Spinner } from "@patternfly/react-core";
|
import { Spinner } from "@patternfly/react-core";
|
||||||
|
@ -119,7 +120,7 @@ export type Action<T> = IAction & {
|
||||||
onRowClick?: (row: T) => Promise<boolean> | void;
|
onRowClick?: (row: T) => Promise<boolean> | void;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type DataListProps<T> = {
|
export type DataListProps<T> = Omit<TableProps, "rows" | "cells"> & {
|
||||||
loader: (first?: number, max?: number, search?: string) => Promise<T[]>;
|
loader: (first?: number, max?: number, search?: string) => Promise<T[]>;
|
||||||
onSelect?: (value: T[]) => void;
|
onSelect?: (value: T[]) => void;
|
||||||
canSelectAll?: boolean;
|
canSelectAll?: boolean;
|
||||||
|
|
|
@ -324,6 +324,7 @@ export const RealmRoleTabs = () => {
|
||||||
subKey={id ? "" : "roles:roleCreateExplain"}
|
subKey={id ? "" : "roles:roleCreateExplain"}
|
||||||
actionsDropdownId="roles-actions-dropdown"
|
actionsDropdownId="roles-actions-dropdown"
|
||||||
dropdownItems={dropdownItems}
|
dropdownItems={dropdownItems}
|
||||||
|
divider={!id}
|
||||||
/>
|
/>
|
||||||
<PageSection variant="light" className="pf-u-p-0">
|
<PageSection variant="light" className="pf-u-p-0">
|
||||||
{id && (
|
{id && (
|
||||||
|
|
|
@ -276,7 +276,6 @@ export const UserGroups = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<PageSection variant="light">
|
|
||||||
<DeleteConfirm />
|
<DeleteConfirm />
|
||||||
{open && (
|
{open && (
|
||||||
<GroupPickerDialog
|
<GroupPickerDialog
|
||||||
|
@ -296,6 +295,7 @@ export const UserGroups = () => {
|
||||||
<KeycloakDataTable
|
<KeycloakDataTable
|
||||||
key={key}
|
key={key}
|
||||||
loader={loader}
|
loader={loader}
|
||||||
|
className="keycloak_user-section_groups-table"
|
||||||
isPaginated
|
isPaginated
|
||||||
ariaLabelKey="roles:roleList"
|
ariaLabelKey="roles:roleList"
|
||||||
searchPlaceholderKey="groups:searchGroup"
|
searchPlaceholderKey="groups:searchGroup"
|
||||||
|
@ -373,7 +373,6 @@ export const UserGroups = () => {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
</PageSection>
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import React, { useContext, useState } from "react";
|
import React, { useContext, useState } from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
|
import { Link, useHistory, useRouteMatch } from "react-router-dom";
|
||||||
import {
|
import {
|
||||||
AlertVariant,
|
AlertVariant,
|
||||||
Button,
|
Button,
|
||||||
|
@ -27,7 +28,6 @@ import { emptyFormatter } from "../util";
|
||||||
import { useConfirmDialog } from "../components/confirm-dialog/ConfirmDialog";
|
import { useConfirmDialog } from "../components/confirm-dialog/ConfirmDialog";
|
||||||
|
|
||||||
import "./user-section.css";
|
import "./user-section.css";
|
||||||
import { Link, useHistory, useRouteMatch } from "react-router-dom";
|
|
||||||
|
|
||||||
type BruteUser = UserRepresentation & {
|
type BruteUser = UserRepresentation & {
|
||||||
brute?: Record<string, object>;
|
brute?: Record<string, object>;
|
||||||
|
|
|
@ -99,9 +99,7 @@ export const UsersTabs = () => {
|
||||||
data-testid="user-groups-tab"
|
data-testid="user-groups-tab"
|
||||||
title={<TabTitleText>{t("groups")}</TabTitleText>}
|
title={<TabTitleText>{t("groups")}</TabTitleText>}
|
||||||
>
|
>
|
||||||
<PageSection variant="light">
|
|
||||||
<UserGroups />
|
<UserGroups />
|
||||||
</PageSection>
|
|
||||||
</Tab>
|
</Tab>
|
||||||
<Tab
|
<Tab
|
||||||
eventKey="consents"
|
eventKey="consents"
|
||||||
|
|
|
@ -7,8 +7,8 @@ button.pf-c-button.pf-m-primary.kc-join-group-button {
|
||||||
margin-right: var(--pf-global--spacer--xl);
|
margin-right: var(--pf-global--spacer--xl);
|
||||||
}
|
}
|
||||||
|
|
||||||
.pf-c-chip-group,
|
.kc-consents-chip-group .pf-c-chip-group,
|
||||||
.pf-c-chip-group__list {
|
kc-consents-chip-group .pf-c-chip-group__list {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,35 +16,15 @@ button#kc-join-groups-button {
|
||||||
height: min-content;
|
height: min-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pf-c-chip-group.pf-m-category {
|
|
||||||
margin-right: var(--pf-global--spacer--md);
|
|
||||||
padding: var(--pf-global--spacer--xs);
|
|
||||||
}
|
|
||||||
|
|
||||||
.join-group-dialog-row-m-disabled {
|
.join-group-dialog-row-m-disabled {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
color: var(--pf-global--disabled-color--200);
|
color: var(--pf-global--disabled-color--200);
|
||||||
}
|
}
|
||||||
|
|
||||||
input#kc-direct-membership-checkbox {
|
.kc-who-will-appear-button {
|
||||||
width: 20px;
|
margin-left: var(--pf-global--spacer--md);
|
||||||
}
|
}
|
||||||
|
|
||||||
.join-group-modal-check > div > input {
|
|
||||||
height: 20px;
|
|
||||||
width: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.data-list-check > input {
|
|
||||||
height: 20px;
|
|
||||||
width: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.pf-c-table__check > input {
|
|
||||||
height: 20px;
|
|
||||||
width: 20px;
|
|
||||||
vertical-align: text-top;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pf-c-toolbar__content-section {
|
.pf-c-toolbar__content-section {
|
||||||
margin-bottom: calc(var(--pf-global--spacer--lg) * -1);
|
margin-bottom: calc(var(--pf-global--spacer--lg) * -1);
|
||||||
|
@ -59,7 +39,7 @@ td.pf-c-table__check > input {
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pf-c-chip-group__list-item {
|
.kc-consents-chip-group .pf-c-chip-group__list-item {
|
||||||
margin-right: 0px;
|
margin-right: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue