stock module latest today vadivel J 08-02-2025

This commit is contained in:
vadivelJ96 2025-02-08 11:24:57 +05:30
parent 2eb60b4816
commit 3e8d9e14cc
5 changed files with 53 additions and 47 deletions

View File

@ -99,6 +99,7 @@
width: 100%; width: 100%;
} }
._Separador { ._Separador {
background-color: #fff; background-color: #fff;
height: 12px; height: 12px;
@ -111,6 +112,8 @@
width: 4px; width: 4px;
} }
/*style excel*/ /*style excel*/
.excel_cell { .excel_cell {
border: 1px solid #CCC; border: 1px solid #CCC;
@ -138,7 +141,6 @@
} }
.celda_encabezado_general { .celda_encabezado_general {
background-color: #50bbd9; background-color: #50bbd9;
border: 1px solid #ccc; border: 1px solid #ccc;
@ -189,6 +191,9 @@
color: #ffffff; color: #ffffff;
border: 1px solid #ddd; border: 1px solid #ddd;
padding: 10px; padding: 10px;
white-space: normal; /* Allows text to wrap */
word-wrap: break-word; /* Breaks long words if needed */
text-align: center; /* Centers text for better alignment */
} }
/* Sticky First Column */ /* Sticky First Column */
@ -219,6 +224,8 @@
</style> </style>

View File

@ -141,8 +141,6 @@
} }
.celda_encabezado_general { .celda_encabezado_general {
background-color: #50bbd9; background-color: #50bbd9;
border: 1px solid #ccc; border: 1px solid #ccc;
@ -215,8 +213,8 @@
} }
td{ td{
min-width: 150px; min-width: 100px;
max-width: 150px; max-width: 100px;
} }

View File

@ -100,7 +100,6 @@
} }
._Separador { ._Separador {
background-color: #fff; background-color: #fff;
height: 12px; height: 12px;
@ -141,17 +140,14 @@
height: 20px; height: 20px;
} }
.celda_encabezado_general { .celda_encabezado_general {
background-color: #50bbd9; background-color: #50bbd9;
border: 1px solid #ccc; border: 1px solid #ccc;
color: #ffffff; color: #ffffff;
font-weight: bold; font-weight: bold;
padding: 6px 10px; padding: 6px 10px;
min-width: 120px; text-align: center;
max-width: 120px;
white-space: normal; /* Allows text to wrap */
word-wrap: break-word; /* Breaks long words if needed */
text-align: center; /* Centers text for better alignment */
} }
.celda_encabezado_total { .celda_encabezado_total {
@ -217,13 +213,16 @@
} }
td{ td{
min-width: 150px; min-width: 100px;
max-width: 150px; max-width: 100px;
} }
</style> </style>
<div class="content-page"> <div class="content-page">
<div class="content"> <div class="content">

View File

@ -1,3 +1,4 @@
<style type="text/css"> <style type="text/css">
.num { .num {
text-align: right; text-align: right;
@ -100,7 +101,6 @@
} }
._Separador { ._Separador {
background-color: #fff; background-color: #fff;
height: 12px; height: 12px;
@ -173,10 +173,8 @@
.fht-table thead { .fht-table thead {
position: sticky; position: sticky;
top: 0; top: 0;
z-index: 20; z-index: 20; /* Ensure the entire header stays above table rows */
/* Ensure the entire header stays above table rows */ background-color: #50bbd9; /* Header background color */
background-color: #50bbd9;
/* Header background color */
} }
.dropdown-menu { .dropdown-menu {
@ -189,10 +187,8 @@
.fht-table thead th { .fht-table thead th {
position: sticky; position: sticky;
top: 0; top: 0;
z-index: 11; z-index: 11; /* Higher than table rows but lower than first column */
/* Higher than table rows but lower than first column */ background-color: #50bbd9; /* Green background */
background-color: #50bbd9;
/* Green background */
color: #ffffff; color: #ffffff;
border: 1px solid #ddd; border: 1px solid #ddd;
padding: 10px; padding: 10px;
@ -207,8 +203,7 @@
position: sticky; position: sticky;
left: 0; left: 0;
background-color: #50bbd9; background-color: #50bbd9;
z-index: 15; z-index: 15; /* Ensures it stays above other cells */
/* Ensures it stays above other cells */
border-right: 2px solid #ddd; border-right: 2px solid #ddd;
color: #ffffff; color: #ffffff;
} }
@ -217,8 +212,7 @@
.table-responsive { .table-responsive {
overflow-x: auto; overflow-x: auto;
overflow-y: auto; overflow-y: auto;
max-height: 500px; max-height: 500px; /* Adjust as needed */
/* Adjust as needed */
position: relative; position: relative;
} }
@ -226,6 +220,13 @@
min-width: 100px; min-width: 100px;
max-width: 100px; max-width: 100px;
} }
</style> </style>

View File

@ -141,7 +141,6 @@
} }
.celda_encabezado_general { .celda_encabezado_general {
background-color: #50bbd9; background-color: #50bbd9;
border: 1px solid #ccc; border: 1px solid #ccc;
@ -217,14 +216,16 @@
} }
td{ td{
min-width: 150px; min-width: 100px;
max-width: 150px; max-width: 100px;
} }
</style> </style>