Skip to content

Commit aa19d07

Browse files
author
shuai
committed
style: delete form.text class text-muted
1 parent 1e1258d commit aa19d07

3 files changed

Lines changed: 4 additions & 7 deletions

File tree

ui/src/components/QuestionList/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const QuestionList: FC<Props> = ({
8585
</NavLink>
8686
</h5>
8787
<div className="d-flex flex-column flex-md-row align-items-md-center small mb-2 text-secondary">
88-
<div className="d-flex flex-nowrap">
88+
<div className="d-flex">
8989
<BaseUserCard
9090
data={li.operator}
9191
showAvatar={false}

ui/src/components/SchemaForm/index.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -365,10 +365,7 @@ const SchemaForm: ForwardRefRenderFunction<FormRef, FormProps> = (
365365
{fieldState?.errorMsg}
366366
</Form.Control.Feedback>
367367
{description ? (
368-
<Form.Text
369-
className="text-muted"
370-
dangerouslySetInnerHTML={{ __html: description }}
371-
/>
368+
<Form.Text dangerouslySetInnerHTML={{ __html: description }} />
372369
) : null}
373370
</Form.Group>
374371
);

ui/src/pages/Users/Settings/Profile/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ const Index: React.FC = () => {
355355
className="me-3 rounded"
356356
alt={formData.display_name.value}
357357
/>
358-
<Form.Text className="text-muted mt-1">
358+
<Form.Text className="mt-1">
359359
<span>{t('avatar.gravatar_text')}</span>
360360
<a
361361
href={
@@ -399,7 +399,7 @@ const Index: React.FC = () => {
399399
</Button>
400400
</ButtonGroup>
401401
</Stack>
402-
<Form.Text className="text-muted mt-1">
402+
<Form.Text className="mt-1">
403403
<Trans i18nKey="settings.profile.avatar.text">
404404
You can upload your image.
405405
</Trans>

0 commit comments

Comments
 (0)