mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-01 13:13:10 +00:00
fix: update text colors to grey (#11805)
* fix: update text colors to grey * fix: update text color
This commit is contained in:
parent
e72cd217d8
commit
712d97e2cf
@ -47,7 +47,7 @@ export const EntityHeader = ({
|
|||||||
serviceName,
|
serviceName,
|
||||||
}: Props) => {
|
}: Props) => {
|
||||||
return (
|
return (
|
||||||
<div className="w-full font-medium">
|
<div className="w-full">
|
||||||
<div
|
<div
|
||||||
className={classNames(
|
className={classNames(
|
||||||
'tw-text-link tw-text-base glossary-breadcrumb',
|
'tw-text-link tw-text-base glossary-breadcrumb',
|
||||||
|
@ -50,7 +50,7 @@ const EntityHeaderTitle = ({
|
|||||||
{/* If we do not have displayName name only be shown in the bold from the below code */}
|
{/* If we do not have displayName name only be shown in the bold from the below code */}
|
||||||
{!isEmpty(displayName) ? (
|
{!isEmpty(displayName) ? (
|
||||||
<Typography.Text
|
<Typography.Text
|
||||||
className="m-b-0 d-block text-grey-muted text-md font-medium"
|
className="m-b-0 d-block text-grey-muted text-md"
|
||||||
data-testid="entity-header-name">
|
data-testid="entity-header-name">
|
||||||
{stringToHTML(name)}
|
{stringToHTML(name)}
|
||||||
</Typography.Text>
|
</Typography.Text>
|
||||||
@ -58,7 +58,7 @@ const EntityHeaderTitle = ({
|
|||||||
|
|
||||||
{/* It will render displayName fallback to name */}
|
{/* It will render displayName fallback to name */}
|
||||||
<Typography.Text
|
<Typography.Text
|
||||||
className="m-b-0 d-block entity-header-display-name text-lg font-bold"
|
className="m-b-0 d-block entity-header-display-name text-lg font-semibold"
|
||||||
data-testid="entity-header-display-name"
|
data-testid="entity-header-display-name"
|
||||||
ellipsis={{ tooltip: true }}>
|
ellipsis={{ tooltip: true }}>
|
||||||
{stringToHTML(displayName || name)}
|
{stringToHTML(displayName || name)}
|
||||||
|
@ -15,7 +15,6 @@ import '@fontsource/poppins'; // Font 400
|
|||||||
import '@fontsource/poppins/300.css'; // Font 300
|
import '@fontsource/poppins/300.css'; // Font 300
|
||||||
import '@fontsource/poppins/500.css'; // Font 500
|
import '@fontsource/poppins/500.css'; // Font 500
|
||||||
import '@fontsource/poppins/600.css'; // Font 600
|
import '@fontsource/poppins/600.css'; // Font 600
|
||||||
import '@fontsource/poppins/700.css'; // Font 700
|
|
||||||
import '@fontsource/source-code-pro'; // Font 400
|
import '@fontsource/source-code-pro'; // Font 400
|
||||||
import 'react-awesome-query-builder/lib/css/styles.css';
|
import 'react-awesome-query-builder/lib/css/styles.css';
|
||||||
import 'reactflow/dist/base.css';
|
import 'reactflow/dist/base.css';
|
||||||
|
@ -22,8 +22,8 @@
|
|||||||
@failed-color: #cb2431;
|
@failed-color: #cb2431;
|
||||||
@aborted-color: #efae2f;
|
@aborted-color: #efae2f;
|
||||||
@info-color: #2196f3;
|
@info-color: #2196f3;
|
||||||
@text-color: #000;
|
@text-color: #292929;
|
||||||
@text-color-secondary: #000;
|
@text-color-secondary: #292929;
|
||||||
@text-color-tertiary: #00000080;
|
@text-color-tertiary: #00000080;
|
||||||
@text-grey-muted: #6b7280d9;
|
@text-grey-muted: #6b7280d9;
|
||||||
@font-size-base: 14px;
|
@font-size-base: 14px;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user