UI updation in all popups.

This commit is contained in:
Kartik Sharma 2025-12-03 11:42:44 +05:30
parent 214a416deb
commit 36f5edf4f5
8 changed files with 13 additions and 13 deletions

View File

@ -100,7 +100,7 @@ const BuildingModel = ({ project, onClose, editingBuilding = null }) => {
return ( return (
<form onSubmit={handleSubmit(onSubmitHandler)} className="row g-2"> <form onSubmit={handleSubmit(onSubmitHandler)} className="row g-2">
<h5 className="text-center mb-2">Manage Buildings </h5> <h5 className="text-center mb-2">Manage Buildings</h5>
<div className="col-12 text-start"> <div className="col-12 text-start">
<label className="form-label">Select Building</label> <label className="form-label">Select Building</label>
<select <select
@ -150,7 +150,7 @@ const BuildingModel = ({ project, onClose, editingBuilding = null }) => {
)} )}
</div> </div>
<div className="col-12 text-end mt-5"> <div className="col-12 text-end mt-6 my-2">
<button <button
type="reset" type="reset"
className="btn btn-sm btn-label-secondary me-3" className="btn btn-sm btn-label-secondary me-3"

View File

@ -163,7 +163,7 @@ const FloorModel = ({ project, onClose, onSubmit }) => {
</> </>
)} )}
<div className="col-12 text-end mt-5"> <div className="col-12 text-end mt-6 my-2">
<button <button
type="button" type="button"
className="btn btn-sm btn-label-secondary me-3" className="btn btn-sm btn-label-secondary me-3"

View File

@ -348,7 +348,7 @@ const TaskModel = ({ project, onSubmit, onClose }) => {
</div> </div>
)} )}
<div className="col-12 text-end mt-5"> <div className="col-12 text-end mt-6 my-2">
<button <button
type="button" type="button"
className="btn btn-sm btn-label-secondary me-3" className="btn btn-sm btn-label-secondary me-3"

View File

@ -187,7 +187,7 @@ const WorkAreaModel = ({ project, onSubmit, onClose }) => {
</div> </div>
</> </>
)} )}
<div className="col-12 text-end mt-5"> <div className="col-12 text-end mt-6 my-2">
<button type="button" className="btn btn-sm btn-label-secondary me-3" disabled={isPending} onClick={onClose}> <button type="button" className="btn btn-sm btn-label-secondary me-3" disabled={isPending} onClick={onClose}>
Cancel Cancel
</button> </button>

View File

@ -199,7 +199,7 @@ const ProjectInfra = ({ data, onDataChange, eachSiteEngineer }) => {
serviceId={selectedService} serviceId={selectedService}
/> />
) : ( ) : (
<div className="text-center py-5"> <div className="text-center py-12">
<p className="text-muted fs-6">No infrastructure data available.</p> <p className="text-muted fs-6">No infrastructure data available.</p>
</div> </div>
)} )}

View File

@ -13,7 +13,8 @@ const TeamAssignToProject = ({ closeModal }) => {
useProjectAssignedOrganizationsName(project); useProjectAssignedOrganizationsName(project);
return ( return (
<div className="container"> <div className="container">
<p className="fs-5 fs-seminbod ">Assign Employee To Project </p> {/* <p className="fs-5 fs-seminbod ">Assign Employee To Project </p> */}
<h5 className="mb-4">Assign Employee To Project</h5>
<div className="row align-items-center gx-5"> <div className="row align-items-center gx-5">
<div className="col"> <div className="col">

View File

@ -155,7 +155,7 @@ if (employees.length === 0) {
return ( return (
<div className=" position-relative"> <div className="position-relative mt-5">
<table className="table" style={{ maxHeight: "80px", overflowY: "auto" }}> <table className="table" style={{ maxHeight: "80px", overflowY: "auto" }}>
<thead className=" position-sticky top-0"> <thead className=" position-sticky top-0">
<tr> <tr>
@ -232,15 +232,15 @@ if (employees.length === 0) {
))} ))}
</tbody> </tbody>
</table> </table>
<div className="position-sticky bottom-0 bg-white d-flex justify-content-end gap-3 z-25 "> <div className="position-sticky bottom-0 bg-white d-flex justify-content-end gap-3 z-25 my-3">
<button <button
type="button" type="button"
className="btn btn-sm btn-label-secondary" className="btn btn-sm btn-label-secondary mt-2"
onClick={() => closeModal()} onClick={() => closeModal()}
> >
Cancel Cancel
</button> </button>
<button onClick={onSubmit} className="btn btn-primary"> <button onClick={onSubmit} className="btn btn-primary btn-sm mt-2">
{isPending ? "Please Wait..." : "Assign to Project"} {isPending ? "Please Wait..." : "Assign to Project"}
</button> </button>
</div> </div>

View File

@ -125,8 +125,7 @@ const NotesPage = ({ projectId, searchText, onExport }) => {
</> </>
) : ( ) : (
<div <div
className="card text-center d-flex align-items-center justify-content-center" className="card text-center page-min-h d-flex align-items-center justify-content-center"
style={{ height: "200px" }}
> >
<p className="text-muted mb-0"> <p className="text-muted mb-0">
{debouncedSearch {debouncedSearch