From 2e6ea0b031983553d04be47fc0452132515aa6cc Mon Sep 17 00:00:00 2001 From: ANKIT VARSHNEY <132201033+AVtheking@users.noreply.github.com> Date: Thu, 14 Nov 2024 18:56:36 +0530 Subject: [PATCH 01/10] changed color schema for the tag and action item screen (#2417) * changed color schema for the tag and action item screen * subtag screen color schema changes * changes --- src/screens/ManageTag/ManageTag.tsx | 19 +- .../OrganizationActionItems/ItemModal.tsx | 6 +- .../ItemUpdateStatusModal.tsx | 6 +- .../OrganizationActionItems.module.css | 2 +- .../OrganizationActionItems.tsx | 61 ++-- src/screens/OrganizationPeople/AddMember.tsx | 3 +- .../OrganizationPeople/OrganizationPeople.tsx | 2 +- .../OrganizationTags.module.css | 150 --------- .../OrganizationTags/OrganizationTags.tsx | 63 ++-- src/screens/SubTags/SubTags.tsx | 115 ++++--- src/style/app.module.css | 295 +++++++++++++++++- src/utils/organizationTagsUtils.ts | 2 +- 12 files changed, 456 insertions(+), 268 deletions(-) delete mode 100644 src/screens/OrganizationTags/OrganizationTags.module.css diff --git a/src/screens/ManageTag/ManageTag.tsx b/src/screens/ManageTag/ManageTag.tsx index e8eb9bb8df..428dad7981 100644 --- a/src/screens/ManageTag/ManageTag.tsx +++ b/src/screens/ManageTag/ManageTag.tsx @@ -1,7 +1,7 @@ import type { FormEvent } from 'react'; import React, { useEffect, useState } from 'react'; import { useMutation, useQuery } from '@apollo/client'; -import { WarningAmberRounded } from '@mui/icons-material'; +import { Search, WarningAmberRounded } from '@mui/icons-material'; import SortIcon from '@mui/icons-material/Sort'; import Loader from 'components/Loader/Loader'; import IconComponent from 'components/IconComponent/IconComponent'; @@ -13,7 +13,7 @@ import Row from 'react-bootstrap/Row'; import { useTranslation } from 'react-i18next'; import { toast } from 'react-toastify'; import type { InterfaceQueryUserTagsAssignedMembers } from 'utils/interfaces'; -import styles from './ManageTag.module.css'; +import styles from '../../style/app.module.css'; import { DataGrid } from '@mui/x-data-grid'; import type { InterfaceTagAssignedMembersQuery, @@ -356,11 +356,10 @@ function ManageTag(): JSX.Element {