65 lines
999 B
CSS
65 lines
999 B
CSS
.bootstrap-iso {
|
|
background-color: white;
|
|
width: 100%;
|
|
color: #000000;
|
|
}
|
|
|
|
.bootstrap-iso .icon-delete {
|
|
display: inline-block;
|
|
margin-right: 10px;
|
|
width: 30px;
|
|
}
|
|
|
|
/* import bootstrap 5.0 */
|
|
@import 'bootstrap/dist/css/bootstrap.css';
|
|
|
|
/* override bootstrap 5.0 */
|
|
ol,
|
|
ul,
|
|
dl {
|
|
margin-top: 0;
|
|
margin-bottom: 0rem;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
table#totaldevis td {
|
|
text-align: center;
|
|
}
|
|
|
|
td {
|
|
white-space: normal;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.bootstrap-iso select {
|
|
max-width: 400px;
|
|
}
|
|
|
|
.tabledt {
|
|
table-layout: auto;
|
|
width: 100%;
|
|
white-space: pre-wrap;
|
|
background-color: var(--color-main-background);
|
|
}
|
|
|
|
.tabledt tbody tr td {
|
|
background-color: var(--color-main-background);
|
|
}
|
|
|
|
table.dataTable.display tbody tr.odd > [class*="sorting_"] {
|
|
background-color: var(--color-main-background);
|
|
}
|
|
|
|
table.dataTable.display tbody tr.even > [class*="sorting_"] {
|
|
background-color: var(--color-main-background);
|
|
}
|