2026-01-27 18:27:29 +05:30
|
|
|
.DateWiseReport-table-denomination {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-table {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 40vh;
|
2026-02-25 18:29:17 +05:30
|
|
|
overflow: auto;
|
|
|
|
|
scrollbar-width: thin;
|
2026-01-27 18:27:29 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-denomination {
|
|
|
|
|
background-color: #bad4f926;
|
|
|
|
|
// width: 22rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-dateandheading {
|
|
|
|
|
display: flex;
|
|
|
|
|
column-gap: 3rem;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Amount-Collected-container {
|
|
|
|
|
text-align: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
row-gap: 1rem;
|
|
|
|
|
margin: auto;
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Amount-Collected {
|
|
|
|
|
font-size: 26px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Amount-Collected-table tr {
|
|
|
|
|
display: flex;
|
|
|
|
|
// width: 15rem;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Amount-Collected-table {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-border-dashed {
|
|
|
|
|
border-bottom: 1px dashed rgb(46, 46, 46);
|
|
|
|
|
width: 17rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Amount-Collected-input {
|
|
|
|
|
width: 3rem;
|
|
|
|
|
border: 0px;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
color: black;
|
|
|
|
|
font-size: 26px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-table .ant-table-thead {
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
background-color: #bad4f9;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-table .ant-table-wrapper .ant-table-thead > tr > th,
|
|
|
|
|
.ant-table-wrapper .ant-table-thead > tr > td {
|
|
|
|
|
color: #000000;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Date-from-heading {
|
|
|
|
|
width: 5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
row-gap: 1rem;
|
|
|
|
|
height: 90vh;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-table-withoutDenom {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-table-withDenom {
|
|
|
|
|
width: 65%;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-table .ant-pagination {
|
|
|
|
|
position: sticky;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 0.5rem;
|
|
|
|
|
// width: 100vw;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-table .ant-table-row > td {
|
|
|
|
|
color: black !important;
|
|
|
|
|
font-weight: 500 !important;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-heading {
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
padding: 0.1rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-submit-btn-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-PrinttAndSubmit {
|
|
|
|
|
display: flex;
|
|
|
|
|
column-gap: 30vw;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-dateaAnd-buttons {
|
|
|
|
|
display: flex;
|
|
|
|
|
column-gap: 2vw;
|
|
|
|
|
row-gap: 0.5rem;
|
|
|
|
|
// flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Date-picker {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
row-gap: 0.5rem;
|
|
|
|
|
// column-gap: 10rem;
|
|
|
|
|
// width: 80%;
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Date .ant-picker {
|
|
|
|
|
width: 20rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-submit-btn {
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
background-color: var(--PRIMARY_BUTTON_BG_COLOR) !important;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-family: "Poppins";
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
border: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// .DateWiseReport-submit-btn:hover {
|
|
|
|
|
// background-color: #a8a8a8;
|
|
|
|
|
// }
|
|
|
|
|
.DateWiseReport-PrinterIcon-Container {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
// position: absolute;
|
|
|
|
|
// top: 2rem;
|
|
|
|
|
// right: 15rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-printerIcon {
|
|
|
|
|
font-size: 25px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-printerIcon:hover {
|
|
|
|
|
color: #414141;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Date {
|
|
|
|
|
display: flex;
|
|
|
|
|
column-gap: 1rem;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Details-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-right: 2rem;
|
|
|
|
|
column-gap: 1rem;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Details {
|
|
|
|
|
margin-left: 0.7rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
column-gap: 1rem;
|
|
|
|
|
row-gap: 0.5rem;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Details-buttons {
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 0.6rem 1rem;
|
|
|
|
|
width: max-content;
|
|
|
|
|
background-color: #006aff;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-printerIcon {
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-table-denomination-container {
|
|
|
|
|
margin: 1rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Date p {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #5a5a5a;
|
|
|
|
|
margin-left: 5px;
|
|
|
|
|
text-wrap: nowrap;
|
|
|
|
|
}
|
|
|
|
|
.required {
|
|
|
|
|
color: #5a5a5a;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
.DateWiseReport-table-denomination {
|
|
|
|
|
overflow: scroll;
|
|
|
|
|
// height: clamp(30vh, vh, 80vh);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-table-denomination .ant-table-thead tr .ant-table-cell {
|
|
|
|
|
font-size: 25px;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-toggle-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
align-items: center;
|
|
|
|
|
column-gap: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-master-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
// flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-table-denomination .ant-table-thead {
|
|
|
|
|
background-color: #bad4f9;
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-coontent-body {
|
|
|
|
|
display: flex;
|
|
|
|
|
column-gap: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-denomination-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
// justify-content: space-evenly;
|
|
|
|
|
align-items: center;
|
|
|
|
|
width: 35%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-mobile-screen-Denomination {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-PrinterIcon-Container {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
// position: absolute;
|
|
|
|
|
// top: 1rem;
|
|
|
|
|
// right: 0rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-netAmount {
|
|
|
|
|
font-size: 23px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-table .ant-table-wrapper .ant-table-thead > tr > th,
|
|
|
|
|
.ant-table-wrapper .ant-table-thead > tr > td {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-table .ant-table-cell {
|
|
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-total-amoutnt-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-datepic {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-submit-prnt {
|
|
|
|
|
display: flex;
|
|
|
|
|
// width: 100%;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
// new style vicky
|
|
|
|
|
.Denomination-container-sub {
|
|
|
|
|
overflow: scroll;
|
|
|
|
|
height: 50vh;
|
|
|
|
|
padding-bottom: 3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 499px) {
|
|
|
|
|
.DateWiseReport-table-withoutDenom {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-submit-prnt {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 3px;
|
|
|
|
|
top: 7rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-submit-btn {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
// margin-right: 0.1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-table {
|
|
|
|
|
// width: 90% !important;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Amount-Collected {
|
|
|
|
|
margin-top: 0 !important;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-total-amoutnt-container {
|
|
|
|
|
justify-content: flex-start !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Amount-Collected-table tr {
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
column-gap: 5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-border-dashed {
|
|
|
|
|
width: 10rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Amount-Collected-table {
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.centerPageSub {
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-datepic {
|
|
|
|
|
gap: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Amount-Collected-container {
|
|
|
|
|
gap: 0 !important;
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-netAmount {
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.Denomination-li {
|
|
|
|
|
column-gap: 1rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
|
.DateWiseReport-PrinterIcon-Container {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 1rem;
|
|
|
|
|
right: 7rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-mobile-screen-Denomination {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-denomination-container {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-denomination {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-container {
|
|
|
|
|
padding: 15px 15px;
|
|
|
|
|
row-gap: 0.5rem !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-toggle-container {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.overalTotal {
|
|
|
|
|
width: 7rem;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-heading {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-Date-picker {
|
|
|
|
|
width: 80%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-heading {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-dateaAnd-buttons {
|
|
|
|
|
column-gap: 4rem !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 380px) {
|
|
|
|
|
.DateWiseReport-PrinterIcon-Container {
|
|
|
|
|
top: 1.5rem;
|
|
|
|
|
right: 0rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-container {
|
|
|
|
|
padding: 10px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// .DateWiseReport-table {
|
|
|
|
|
// width: 90vw !important;
|
|
|
|
|
// overflow: auto;
|
|
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateWiseReport-printerIcon-disabled {
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
/* You can adjust the opacity to visually indicate it's disabled */
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
/* Disable pointer events so it won't respond to clicks */
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
/* Change cursor to indicate it's not clickable */
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.datewise-userDropDown {
|
|
|
|
|
height: 3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// .DateWiseReport-mobile-screen-Denomination .Denomination-container {
|
|
|
|
|
// display: none;
|
|
|
|
|
// }
|