Add CSS files

This commit is contained in:
2025-05-12 15:46:13 +00:00
parent 967007b0c7
commit 4a4ed02e8a
583 changed files with 83461 additions and 0 deletions

137
modules/EcmSalesC/MyTable.css Executable file
View File

@@ -0,0 +1,137 @@
.positions tbody {
}
.positions {
background-color: white;
width: 100%;
border-collapse: separate;
table-layout:fixed;
}
.positions tr {
}
.positions td {
padding: 2px;
vertical-align: center;
}
.positions thead {
background-color: rgb(224,240,255);
text-align: center;
}
.positions thead tr {
height: 24px;
}
.positions thead td {
border: 1px solid rgb(48,192,255);
height: 0px;
font-family: Arial;
font-size: 12px;
color: black;
}
.positions tbody {
}
.positions tbody td {
border-color: rgb(199,199,199);
border-width: 1px;
border-right-style: dashed;
border-bottom-style: solid;
font-family: Arial;
font-size: 12px;
color: black;
vertical-align: top;
margin:0px; padding:0px;
}
.select {
background-color: rgb(255,255,204);
}
.positions .inputs {
background-color: white;
border: none;
width: 100%;
height: 16px;
font-family: Arial;
font-size: 12px;
}
.positions input {
font-family: Arial;
font-size: 12px;
}
.positions select {
font-family: Arial;
font-size: 12px;
}
.positions textarea {
background-color: white;
border: none;
width: 100%;
height: 16px;
font-family: Arial;
font-size: 12px;
overflow: auto;
}
.selectedRow { background-color: rgb(255,255,204); }
.selectedRow .inputs { background-color: rgb(255,255,204); }
.selectedRow textarea { background-color: rgb(255,255,204); }
.selectedCell { background-color: rgb(240,255,160); }
.selectedCell .inputs { background-color: rgb(240,255,160); }
.selectedCell textarea { background-color: rgb(240,255,160); }
.positions tbody .TD0, .TD1, .TD3, .TD5, .TD7 { text-align: center; }
.positions tbody .TD4, .TD6 { text-align: right; }
.positionsLabel {
border: 1px dashed rgb(48,192,255);
border-bottom: 0px;
border-left: 0px;
border-right: 0px;
background-color: rgb(224,240,255);
font-weight: 700;
font-family: Arial;
font-size: 12px;
color: black;
text-align: center;
width: 40%;
height: 24px;
}
.positionsField {
border: 1px dashed rgb(48,192,255);
border-bottom: 0px;
border-left: 0px;
border-right: 0px;
background-color: white;
font-family: Arial;
font-size: 12px;
color: black;
font-weight: 700;
width: 60%;
height: 24px;
text-align: right;
margin-right: 10%;
padding-right: 10px;
}
.transparent_class {
position:absolute;
left:0;
top:0;
background-color:#CCCCCC;
filter:alpha(opacity=25);
-moz-opacity:0.25;
-khtml-opacity: 0.25;
opacity: 0.25;
}
.transparent_class_loading {
position:absolute;
left:0;
top:0;
background-color:#CCCCCC;
filter:alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
.transparent_class_loading_image {
position:relative;
left:50%;
top:20;
z-index:999;
}

View File

@@ -0,0 +1,3 @@
@page {
margin: 100px 20px 200px 20px;
}

42
modules/EcmSalesC/css/style.css Executable file
View File

@@ -0,0 +1,42 @@
/* tables */
table.tablesorter {
font-family:arial;
background-color: #CDCDCD;
margin:10px 0pt 15px;
font-size: 8pt;
width: 100%;
text-align: left;
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
background-color: #e6EEEE;
border: 1px solid #FFF;
font-size: 8pt;
padding: 4px;
}
table.tablesorter thead tr .header {
background-image: url(bg.gif);
background-repeat: no-repeat;
background-position: center right;
cursor: pointer;
}
table.tablesorter tbody td {
color: #3D3D3D;
padding: 4px;
background-color: #FFF;
vertical-align: top;
}
table.tablesorter tbody tr.odd td {
background-color:#F0F0F6;
}
table.tablesorter thead tr .headerSortUp {
background-image: url(asc.gif);
}
table.tablesorter thead tr .headerSortDown {
background-image: url(desc.gif);
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
background-color: #8dbdd8;
}
table.tablesorter tbody tr.highlighted td {
background-color: #EEEEEE;
}

View File

@@ -0,0 +1,26 @@
.loading_panel {
display: block;
position: fixed;
z-index: 1000;
top: 0;
left: 0;
height: 100%;
width: 100%;
text-align: center;
padding-top: 20%;
background: rgba( 255, 255, 255, .8 )
url('./../images/loading.gif')
50% 25%
no-repeat;
}
#searchResultDiv table
{
background: white;
border: 1px sold lightyellow;
}
#searchResultDiv tr:hover {
background-color: lightyellow;
cursor: pointer;
}