Skip to content
Snippets Groups Projects
Unverified Commit 50942b96 authored by Kyle Doherty's avatar Kyle Doherty Committed by GitHub
Browse files

begin consolidating error colors (#7073)

parent b3825fbf
No related branches found
No related tags found
No related merge requests found
......@@ -743,7 +743,7 @@ export class FieldRemapping extends Component {
/>
</PopoverWithTrigger>,
dismissedInitialFkTargetPopover && (
<div className="text-danger my2">{t`Please select a column to use for display.`}</div>
<div className="text-error my2">{t`Please select a column to use for display.`}</div>
),
hasChanged && hasFKMappingValue && <RemappingNamingTip />,
]}
......
......@@ -55,7 +55,7 @@ const PermissionsConfirm = ({ diff }) => (
{database.revokedTables && (
<TableAccessChange
verb={t`denied access to`}
color="text-warning"
color="text-error"
tables={database.revokedTables}
/>
)}
......
......@@ -17,7 +17,6 @@
--success-color: #9cc177;
--headsup-color: #f5a623;
--warning-color: #e35050;
--gold-color: #f9d45c;
--orange-color: #f9a354;
......@@ -25,11 +24,12 @@
--green-color: #9cc177;
--green-saturated-color: #84bb4c;
--dark-color: #4c545b;
--error-color: #ef8c8c;
--slate-color: #9ba5b1;
--slate-light-color: #dfe8ea;
--slate-almost-extra-light-color: #edf2f5;
--slate-extra-light-color: #f9fbfc;
--error-color: #e35050;
}
.text-default,
......@@ -41,10 +41,6 @@
color: var(--default-font-color);
}
.text-danger {
color: #eea5a5;
}
/* brand */
.text-brand,
:local(.text-brand),
......@@ -102,16 +98,6 @@
background-color: #fce8e8;
}
/* warning */
.text-warning {
color: var(--warning-color) !important;
}
.bg-warning {
background-color: var(--warning-color);
}
/* favorite */
.text-gold,
.text-gold-hover:hover {
......
......@@ -99,7 +99,7 @@ export default class ExpressionWidget extends Component {
<div>
{this.props.expression ? (
<a
className="pr2 ml2 text-warning link"
className="pr2 ml2 text-error link"
onClick={() => this.props.onRemoveExpression(this.props.name)}
>{t`Remove`}</a>
) : null}
......
......@@ -401,7 +401,7 @@ describe("FieldApp", () => {
e: { target: document.documentElement },
});
await delay(300); // delay needed because of setState in FieldApp; app.update() does not work for whatever reason
expect(section.find(".text-danger").length).toBe(1); // warning that you should choose a column
expect(section.find(".text-error").length).toBe(1); // warning that you should choose a column
});
it("doesn't let you enter custom remappings for a field with string values", async () => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment