stock module - 25-03-2025

This commit is contained in:
vadivelJ96 2025-03-26 11:57:37 +05:30
parent feaecca315
commit 4e5e0f3f09
2 changed files with 28 additions and 10 deletions

View File

@ -225,15 +225,33 @@
color: #ffffff; color: #ffffff;
} }
/* Table Wrapper for Scrolling */
.table-responsive { .table-responsive {
overflow-x: auto; overflow-x: auto;
overflow-y: auto; overflow-y: auto;
max-height: 700px; max-height: 500px;
/* Adjust as needed */ max-width: 100%;
position: relative; position: relative;
} }
/* Adjust heights based on screen zoom */
@media only screen and (min-height: 1400px) { /* Approximate Zoom < 100% */
.table-responsive { max-height: 425px; }
}
@media only screen and (min-height: 1200px) { /* Approximate Zoom ~ 90% */
.table-responsive { max-height: 500px; }
}
@media only screen and (min-height: 1000px) { /* Approximate Zoom ~ 80% */
.table-responsive { max-height: 600px; }
}
@media only screen and (min-height: 800px) { /* Approximate Zoom ~ 75% */
.table-responsive { max-height: 650px; }
}
td { td {
min-width: 100px; min-width: 100px;
max-width: 100px; max-width: 100px;

View File

@ -172,7 +172,7 @@
/* <!-- ad9271 into ffffff brown-light to green-light --> */ /* <!-- ad9271 into ffffff brown-light to green-light --> */
text-align: center; text-align: center;
border: 1px solid #ccc; border: 1px solid #ccc;
padding: 10px 4px; padding: 12px 4px;
} }
#trpProductionStockDetailsTableId tfoot tr td.celda_normal { #trpProductionStockDetailsTableId tfoot tr td.celda_normal {