Compare commits

...

25 Commits

Author SHA1 Message Date
33fd4de3c3 Merge branch 'Kartik_Bug#800' of https://git.marcoaiot.com/admin/marco.pms.web into Kartik_Bug#800 2025-07-26 14:32:58 +05:30
773f91b836 changes 2025-07-26 14:32:43 +05:30
b89037e395 Changing all filter icon to bx bx-slider-alt ms-2. 2025-07-26 14:32:26 +05:30
12d8184b70 Change all filter icon to bx bx-slider-alt ms-2. In image Gallery, Directory and Project List. 2025-07-26 14:31:47 +05:30
a9078bea77 Changes in Directory page. 2025-07-26 14:29:55 +05:30
c90e874081 Changing all filter icon to bx bx-slider-alt ms-2. 2025-07-26 14:29:55 +05:30
0555e01b2c Change all filter icon to bx bx-slider-alt ms-2. In image Gallery, Directory and Project List. 2025-07-26 14:29:55 +05:30
189c70cc78 Change all filter icon to bx bx-slider-alt ms-2. In image Gallery, Directory and Project List. 2025-07-26 14:29:55 +05:30
ebce31e441 Changing all filter icon to bx bx-slider-alt ms-2. 2025-07-26 14:29:55 +05:30
9e0e0753d9 Change all filter icon to bx bx-slider-alt ms-2. In image Gallery, Directory and Project List. 2025-07-26 14:29:55 +05:30
67a2b95d24 Merge branch 'Issues_July_4W' of https://git.marcoaiot.com/admin/marco.pms.web into Kartik_Bug#800 2025-07-26 13:30:22 +05:30
513783883b changes 2025-07-26 11:54:10 +05:30
c9eacc6bb0 Merge branch 'Kartik_Bug#800' of https://git.marcoaiot.com/admin/marco.pms.web into Kartik_Bug#800 2025-07-26 11:29:24 +05:30
149abf721c Changes in Directory page. 2025-07-26 11:29:19 +05:30
d5e06d389a Changing all filter icon to bx bx-slider-alt ms-2. 2025-07-26 11:29:19 +05:30
69dbc5944b Change all filter icon to bx bx-slider-alt ms-2. In image Gallery, Directory and Project List. 2025-07-26 11:29:01 +05:30
24fa55ad1b Change all filter icon to bx bx-slider-alt ms-2. In image Gallery, Directory and Project List. 2025-07-26 11:28:31 +05:30
fc6ab934c9 Changes in Directory page. 2025-07-26 11:03:08 +05:30
e9d207964a Merge branch 'Kartik_Bug#800' of https://git.marcoaiot.com/admin/marco.pms.web into Kartik_Bug#800 2025-07-25 15:47:08 +05:30
89a810242f Changing all filter icon to bx bx-slider-alt ms-2. 2025-07-25 15:47:01 +05:30
44581cbce0 Change all filter icon to bx bx-slider-alt ms-2. In image Gallery, Directory and Project List. 2025-07-25 15:47:01 +05:30
6702fab007 Changing all filter icon to bx bx-slider-alt ms-2. 2025-07-24 17:08:40 +05:30
266c843509 Merge branch 'Kartik_Bug#800' of https://git.marcoaiot.com/admin/marco.pms.web into Kartik_Bug#800 2025-07-24 16:50:41 +05:30
74936afdf2 Change all filter icon to bx bx-slider-alt ms-2. In image Gallery, Directory and Project List. 2025-07-24 16:46:55 +05:30
f91a518a72 Change all filter icon to bx bx-slider-alt ms-2. In image Gallery, Directory and Project List. 2025-07-23 14:59:42 +05:30
4 changed files with 13 additions and 16 deletions

View File

@ -37,7 +37,7 @@ const Header = () => {
const allowedProjectStatusIds = [
"603e994b-a27f-4e5d-a251-f3d69b0498ba", // On Hold
"cdad86aa-8a56-4ff4-b633-9c629057dfef", // In Progress
"ef1c356e-0fe0-42df-a5d3-8daee355492d", // Inactive - Removed as per requirement
// "ef1c356e-0fe0-42df-a5d3-8daee355492d", // Inactive - Removed as per requirement
"b74da4c2-d07e-46f2-9919-e75e49b12731", // Active
];

View File

@ -280,7 +280,8 @@ const DirectoryPageHeader = ({
<hr className="my-0 mb-2" style={{ borderTop: "1px solid #dee2e6" }} />
<div className="row mx-0 px-0 align-items-center mt-2">
<div className="col-12 col-md-6 mb-2 px-5 d-flex align-items-center gap-4">
{/* REMOVED DUPLICATE LINE HERE */}
<div className="col-12 col-md-6 mb-2 px-1 d-flex align-items-center gap-2">
<input
type="search"
@ -299,7 +300,7 @@ const DirectoryPageHeader = ({
data-bs-toggle="dropdown"
aria-expanded="false"
>
<i className={`fa-solid fa-filter ms-1 fs-5 ${notesFilterCount > 0 ? "text-primary" : "text-muted"}`}></i>
<i className={`bx bx-slider-alt ${notesFilterCount > 0 ? "text-primary" : "text-muted"}`}></i>
{notesFilterCount > 0 && (
<span className="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-warning" style={{ fontSize: "0.4rem" }}>
{notesFilterCount}
@ -405,17 +406,17 @@ const DirectoryPageHeader = ({
<button
type="button"
className={`btn btn-xs ${viewType === "card" ? "btn-primary" : "btn-outline-primary"}`}
className={`btn btn-sm p-1 ${viewType === "card" ? "btn-primary" : "btn-outline-primary"}`}
onClick={() => setViewType("card")}
>
<i className="bx bx-grid-alt"></i>
</button>
<button
type="button"
className={`btn btn-xs ${viewType === "list" ? "btn-primary" : "btn-outline-primary"}`}
className={`btn btn-sm p-1 ${viewType === "list" ? "btn-primary" : "btn-outline-primary"}`}
onClick={() => setViewType("list")}
>
<i className="bx bx-list-ul me-1"></i>
<i className="bx bx-list-ul"></i>
</button>
</div>
@ -423,13 +424,13 @@ const DirectoryPageHeader = ({
{/* Filter by funnel icon for Contacts view (retains numerical badge) */}
{viewType !== "notes" && (
<div className="dropdown-center" style={{ width: "fit-content" }}>
<div className="dropdown" style={{ width: "fit-content" }}>
<a
className="dropdown-toggle hide-arrow cursor-pointer d-flex align-items-center position-relative"
data-bs-toggle="dropdown"
aria-expanded="false"
>
<i className={`fa-solid fa-filter ms-1 fs-5 ${filtered > 0 ? "text-primary" : "text-muted"}`}></i>
<i className={`bx bx-slider-alt ${filtered > 0 ? "text-primary" : "text-muted"}`}></i>
{filtered > 0 && (
<span className="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-warning" style={{ fontSize: "0.4rem" }}>
{filtered}
@ -487,7 +488,7 @@ const DirectoryPageHeader = ({
<button
className="btn btn-xs btn-secondary"
onClick={(e) => {
// e.stopPropagation();
// e.stopPropagation(); // This might be needed if the dropdown closes unexpectedly
clearFilter();
}}
>

View File

@ -317,11 +317,7 @@ useEffect(() => {
onClick={() => setIsFilterPanelOpen((p) => !p)}
ref={filterButtonRef}
>
{isFilterPanelOpen ? (
<i className="fa-solid fa-times fs-5" />
) : (
<i className="fa-solid fa-filter ms-1 fs-5" />
)}
{isFilterPanelOpen ? <i className="fa-solid fa-times fs-5"></i> : <i className="bx bx-slider-alt ms-1"></i>}
</button>
<div className="activity-section">
{isLoading ? (

View File

@ -192,7 +192,7 @@ const ProjectList = () => {
</button>
</div>
<div className="dropdown ms-3 mt-1">
<div className="dropdown mt-1">
<a
className="dropdown-toggle hide-arrow cursor-pointer p-1 mt-3 "
data-bs-toggle="dropdown"
@ -200,7 +200,7 @@ const ProjectList = () => {
data-bs-custom-class="tooltip"
title="Filter"
>
<i className="fa-solid fa-filter fs-4"></i>
<i className="bx bx-slider-alt ms-1"></i>
</a>
<ul className="dropdown-menu p-2 text-capitalize">
{[