1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
.bd-main .bd-content .bd-article-container {
max-width: 100%; /* default is 60em */
}
.bd-page-width {
max-width: 100%; /* default is 88rem */
}
.green {
color: green;
}
table.datatable {
display: block;
overflow-x: auto;
width: 100%;
max-height: 500px;
font-size: smaller;
border-bottom: 0px;
}
table.datatable th:nth-child(2),
table.datatable td:nth-child(2),
table.datatable th:nth-child(3),
table.datatable td:nth-child(3),
table.datatable th:nth-child(5),
table.datatable td:nth-child(5),
table.datatable th:nth-child(6),
table.datatable td:nth-child(6),
table.datatable th:nth-child(7),
table.datatable td:nth-child(7),
table.datatable th:nth-child(8),
table.datatable td:nth-child(8),
table.datatable th:nth-child(9),
table.datatable td:nth-child(9),
table.datatable th:nth-child(10),
table.datatable td:nth-child(10),
table.datatable th:nth-child(12),
table.datatable td:nth-child(12),
table.datatable th:nth-child(11),
table.datatable td:nth-child(11) {
display: none;
}
table.params {
display: block;
overflow-x: auto;
white-space: nowrap;
height: 500px;
font-size: smaller;
}
table.params td {
padding-top: 0;
padding-bottom: 0;
}
table.params thead tr th {
position: sticky;
top: 0;
z-index: 1;
background-color: #fafafa;
}
table.params thead tr th:first-child {
z-index: 3;
}
table.params th:first-child,
table.params td:first-child {
background-color: #fafafa;
z-index: 2;
position: sticky;
left: 0;
}
a.hidden:hover,
a.highlighted:hover {
cursor: pointer;
}
table.datatable thead tr th {
position: sticky;
top: 0;
z-index: 1;
background-color: #fafafa;
border-right: 1px solid #ddd;
border-bottom: 2px solid #ddd;
}
table.datatable thead tr th:first-child {
z-index: 3;
border-left: 1px solid #ddd;
}
table.datatable thead tr th:last-child {
border-right: 1px solid #ddd;
}
table.datatable th:first-child,
table.datatable td:first-child {
background-color: #fafafa;
z-index: 2;
position: sticky;
left: 0;
}
table.datatable tbody tr:last-child th,
table.datatable tbody tr:last-child td {
border-bottom: 1px solid #ddd;
}
dl.attribute {
display: grid;
grid-template-columns: 1fr 2fr;
margin-bottom: 1rem !important;
}
dl.attribute dt {
grid-column-start: 1;
}
dl.attribute dd {
grid-column-start: 2;
}
.nboutput table {
margin-left: unset;
margin-right: unset;
}
.grid-item-card h2 span {
display: inline-flex;
align-items: center;
gap: 0.4rem;
}
.grid-item-card h2 img,
.grid-item-card h2 svg {
width: 20px;
height: 20px;
}
.sd-dropdown.muted {
background-color: #fafafa !important;
border: 1px solid #ddd !important;
color: #444 !important;
box-shadow: none !important;
font-size: 0.9em;
}
.sd-dropdown.muted .sd-summary-content {
padding: 0.5em 0.8em !important;
}
.sd-card.card-border-primary,
.sd-card.card-border-success,
.sd-card.card-border-warning,
.sd-card.card-border-info {
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}
|