mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
update: changed icons for gantt chat in issues, modules and cycles (#1096)
This commit is contained in:
parent
e1e9a5ed96
commit
ae67dc6074
@ -85,12 +85,14 @@ export const IssuesFilterView: React.FC = () => {
|
|||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className={`grid h-7 w-7 place-items-center rounded p-1 outline-none duration-300 hover:bg-brand-surface-2 ${
|
className={`grid h-7 w-7 place-items-center rounded outline-none duration-300 hover:bg-brand-surface-2 ${
|
||||||
issueView === "gantt_chart" ? "bg-brand-surface-2" : ""
|
issueView === "gantt_chart" ? "bg-brand-surface-2" : ""
|
||||||
}`}
|
}`}
|
||||||
onClick={() => setIssueView("gantt_chart")}
|
onClick={() => setIssueView("gantt_chart")}
|
||||||
>
|
>
|
||||||
<ChartBarIcon className="h-4 w-4 text-brand-secondary" />
|
<span className="material-symbols-rounded text-brand-secondary text-[18px] rotate-90">
|
||||||
|
waterfall_chart
|
||||||
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<SelectFilters
|
<SelectFilters
|
||||||
|
@ -97,12 +97,14 @@ export const CyclesView: React.FC<Props> = ({
|
|||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className={`grid h-7 w-7 place-items-center rounded p-1 outline-none duration-300 hover:bg-brand-surface-2 ${
|
className={`grid h-7 w-7 place-items-center rounded outline-none duration-300 hover:bg-brand-surface-2 ${
|
||||||
cyclesView === "gantt_chart" ? "bg-brand-surface-2" : ""
|
cyclesView === "gantt_chart" ? "bg-brand-surface-2" : ""
|
||||||
}`}
|
}`}
|
||||||
onClick={() => setCyclesView("gantt_chart")}
|
onClick={() => setCyclesView("gantt_chart")}
|
||||||
>
|
>
|
||||||
<ChartBarIcon className="h-4 w-4 text-brand-secondary" />
|
<span className="material-symbols-rounded text-brand-secondary text-[18px] rotate-90">
|
||||||
|
waterfall_chart
|
||||||
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -110,12 +110,14 @@ const ProjectModules: NextPage = () => {
|
|||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className={`grid h-7 w-7 place-items-center rounded p-1 outline-none duration-300 hover:bg-brand-surface-2 ${
|
className={`grid h-7 w-7 place-items-center rounded outline-none duration-300 hover:bg-brand-surface-2 ${
|
||||||
modulesView === "gantt_chart" ? "bg-brand-surface-2" : ""
|
modulesView === "gantt_chart" ? "bg-brand-surface-2" : ""
|
||||||
}`}
|
}`}
|
||||||
onClick={() => setModulesView("gantt_chart")}
|
onClick={() => setModulesView("gantt_chart")}
|
||||||
>
|
>
|
||||||
<ChartBarIcon className="h-4 w-4 text-brand-secondary" />
|
<span className="material-symbols-rounded text-brand-secondary text-[18px] rotate-90">
|
||||||
|
waterfall_chart
|
||||||
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user