Skip to content

Commit

Permalink
fix: RLS modal styling (apache#26634)
Browse files Browse the repository at this point in the history
(cherry picked from commit 820f4b9)
  • Loading branch information
geido authored and sadpandajoe committed Feb 12, 2024
1 parent 1350b3b commit 5e8c551
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,7 @@ const LabeledErrorBoundInput = ({
<StyledFormLabel htmlFor={id} required={required}>
{label}
</StyledFormLabel>
{hasTooltip && (
<InfoTooltip tooltip={`${tooltipText}`} viewBox="0 -1 24 24" />
)}
{hasTooltip && <InfoTooltip tooltip={`${tooltipText}`} />}
</StyledAlignment>
<FormItem
css={(theme: SupersetTheme) => alertIconStyles(theme, !!errorMessage)}
Expand Down
2 changes: 1 addition & 1 deletion superset-frontend/src/components/InfoTooltip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function InfoTooltip({
trigger = 'hover',
overlayStyle = defaultOverlayStyle,
bgColor = defaultColor,
viewBox = '0 -2 24 24',
viewBox = '0 -1 24 24',
}: InfoTooltipProps) {
return (
<StyledTooltip
Expand Down
49 changes: 31 additions & 18 deletions superset-frontend/src/features/rls/RowLevelSecurityModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,19 @@ import Select from 'src/components/Select/Select';
import AsyncSelect from 'src/components/Select/AsyncSelect';
import rison from 'rison';
import { LabeledErrorBoundInput } from 'src/components/Form';
import { noBottomMargin } from 'src/features/reports/ReportModal/styles';
import InfoTooltip from 'src/components/InfoTooltip';
import { useSingleViewResource } from 'src/views/CRUD/hooks';
import { FilterOptions } from './constants';
import { FilterType, RLSObject, RoleObject, TableObject } from './types';

const noMargins = css`
margin: 0;
.ant-input {
margin: 0;
}
`;

const StyledModal = styled(Modal)`
max-width: 1200px;
min-width: min-content;
Expand All @@ -59,17 +66,24 @@ const StyledSectionContainer = styled.div`
padding: ${({ theme }) =>
`${theme.gridUnit * 3}px ${theme.gridUnit * 4}px ${theme.gridUnit * 2}px`};
label {
label,
.control-label {
display: inline-block;
font-size: ${({ theme }) => theme.typography.sizes.s}px;
color: ${({ theme }) => theme.colors.grayscale.light1};
color: ${({ theme }) => theme.colors.grayscale.base};
vertical-align: middle;
}
.info-solid-small {
vertical-align: middle;
padding-bottom: ${({ theme }) => theme.gridUnit / 2}px;
}
`;

const StyledInputContainer = styled.div`
display: flex;
flex-direction: column;
margin: ${({ theme }) => theme.gridUnit}px;
margin-bottom: ${({ theme }) => theme.gridUnit * 4}px;
.input-container {
Expand All @@ -79,29 +93,26 @@ const StyledInputContainer = styled.div`
> div {
width: 100%;
}
label {
display: flex;
margin-right: ${({ theme }) => theme.gridUnit * 2}px;
}
}
input,
textarea {
flex: 1 1 auto;
}
textarea {
height: 100px;
resize: none;
}
.required {
margin-left: ${({ theme }) => theme.gridUnit / 2}px;
color: ${({ theme }) => theme.colors.error.base};
}
`;

const StyledTextArea = styled.textarea`
height: 100px;
resize: none;
margin-top: ${({ theme }) => theme.gridUnit}px;
border: 1px solid ${({ theme }) => theme.colors.secondary.light3};
`;

export interface RowLevelSecurityModalProps {
rule: RLSObject | null;
addSuccessToast: (msg: string) => void;
Expand Down Expand Up @@ -355,9 +366,11 @@ function RowLevelSecurityModal(props: RowLevelSecurityModalProps) {
onChange: ({ target }: { target: HTMLInputElement }) =>
onTextChange(target),
}}
css={noBottomMargin}
css={noMargins}
label={t('Rule Name')}
data-test="rule-name-test"
tooltipText={t('The name of the rule must be unique')}
hasTooltip
/>
</StyledInputContainer>

Expand Down Expand Up @@ -433,7 +446,7 @@ function RowLevelSecurityModal(props: RowLevelSecurityModalProps) {
onChange: ({ target }: { target: HTMLInputElement }) =>
onTextChange(target),
}}
css={noBottomMargin}
css={noMargins}
label={t('Group Key')}
hasTooltip
tooltipText={t(
Expand All @@ -454,7 +467,7 @@ function RowLevelSecurityModal(props: RowLevelSecurityModalProps) {
onChange: ({ target }: { target: HTMLInputElement }) =>
onTextChange(target),
}}
css={noBottomMargin}
css={noMargins}
label={t('Clause')}
hasTooltip
tooltipText={t(
Expand All @@ -468,7 +481,7 @@ function RowLevelSecurityModal(props: RowLevelSecurityModalProps) {
<StyledInputContainer>
<div className="control-label">{t('Description')}</div>
<div className="input-container">
<textarea
<StyledTextArea
name="description"
value={currentRule ? currentRule.description : ''}
onChange={event => onTextChange(event.target)}
Expand Down
4 changes: 1 addition & 3 deletions superset-frontend/src/pages/ChartList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,7 @@ function ChartList(props: ChartListProps) {
)}
{sliceName}
</Link>
{description && (
<InfoTooltip tooltip={description} viewBox="0 -1 24 24" />
)}
{description && <InfoTooltip tooltip={description} />}
</FlexRowContainer>
),
Header: t('Name'),
Expand Down
4 changes: 1 addition & 3 deletions superset-frontend/src/pages/DatasetList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -349,9 +349,7 @@ const DatasetList: FunctionComponent<DatasetListProps> = ({
/>
)}
{titleLink}
{description && (
<InfoTooltip tooltip={description} viewBox="0 -1 24 24" />
)}
{description && <InfoTooltip tooltip={description} />}
</FlexRowContainer>
);
} catch {
Expand Down

0 comments on commit 5e8c551

Please sign in to comment.