Skip to content

Commit

Permalink
feather migation hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
lil5 committed May 1, 2024
1 parent c5809cd commit a3f24df
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 1,121 deletions.
279 changes: 0 additions & 279 deletions frontend/public/icons/feather/feather.svg

This file was deleted.

Binary file removed frontend/public/icons/feather/feather.ttf
Binary file not shown.
Binary file removed frontend/public/icons/feather/feather.woff
Binary file not shown.
833 changes: 0 additions & 833 deletions frontend/public/icons/feather/style.css

This file was deleted.

2 changes: 1 addition & 1 deletion frontend/src/components/react/components/ChainsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export default function ChainsList({ chains, setChains }: Props) {
chains?.length > 5 ? "btn-sm" : ""
} ${userChain ? "" : "btn-disabled"}`}
>
<span className="text-xl icon-more-vertical" />
<span className="text-xl icon-ellipsis-vertical" />
</label>
{userChain ? (
<ul
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export default function RouteMap(props: { chain: Chain; route: UID[] }) {
);
}

let lineTypeIcon = "icon-git-commit";
let lineTypeIcon = "icon-git-commit-horizontal";
let lineTypeHoverText = t("showRouteOrder");
if (lineType === "line") {
lineTypeIcon = "icon-minus";
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/react/layout/ToastManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function ToastComponent(props: {
break;
case "error":
classes += " bg-error border-error";
icon += " icon-alert-octagon";
icon += " icon-octagon-alert";
break;
}

Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/react/pages/AdminDashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export default function AdminDashboard() {
href={localizePath("/users/edit/?user=me")}
>
{t("editAccount")}
<span className="icon-edit ml-2 rtl:ml-0 rtl:mr-2"></span>
<span className="icon-pencil ml-2 rtl:ml-0 rtl:mr-2"></span>
</a>
<button
className="btn btn-sm btn-secondary btn-outline bg-white h-auto mb-4 sm:mr-4 text-black group"
Expand All @@ -154,7 +154,7 @@ export default function AdminDashboard() {
onClick={deleteClicked}
>
<span className="text-danger">{t("deleteUserBtn")}</span>
<span className="icon-alert-octagon ml-2 rtl:ml-0 rtl:mr-2"></span>
<span className="icon-octagon-alert ml-2 rtl:ml-0 rtl:mr-2"></span>
</button>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/react/pages/ChainMemberList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ export default function ChainMemberList() {
>
{t("editLoop")}
<span
className="ltr:ml-2 rtl:mr-2 icon-edit-2"
className="ltr:ml-2 rtl:mr-2 icon-pencil-2"
aria-hidden
/>
</a>
Expand Down Expand Up @@ -1646,7 +1646,7 @@ function DropdownMenu(props: { items: ReactElement[]; classes: string }) {
return (
<div className={"dropdown ".concat(props.classes)}>
<label tabIndex={0} className="btn btn-ghost">
<span className="text-xl icon-more-vertical" />
<span className="text-xl icon-ellipsis-vertical" />
</label>
<ul
tabIndex={0}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/react/pages/Contribute.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ export default function Contribute() {
target="_blank"
href="https://github.com/the-clothing-loop/website/issues"
>
<span className="icon-git-branch me-2" />
<span className="icon-github me-2" />
<span>Github</span>
</a>
<a
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/react/pages/EventDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export default function EventDetails() {
href={localizePath("/events/edit/?event=" + event.uid)}
className="btn btn-secondary btn-outline sm:me-4"
>
<span className="icon-edit mr-3 rtl:mr-0 rtl:ml-3"></span>
<span className="icon-pencil mr-3 rtl:mr-0 rtl:ml-3"></span>
{t("edit")}
</a>
<button
Expand Down

0 comments on commit a3f24df

Please sign in to comment.