mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-26 23:49:59 -07:00
* first pass at changing the UI color based on state * adding flag to qmdl metadata for when hueristic is triggered * update style for web page to match UI and have color alert on heuristic trigger * add test analyzer * rename example_analyzer to test_analyzer * refactor ui update to not depend on server * refactor to pass around color instead of display state for framebuffer channel * add debug feature flag for test analyzer * remove warning status from qmdl manifest * dont keep has warning around
46 lines
600 B
CSS
46 lines
600 B
CSS
td,
|
|
th {
|
|
border: 1px solid rgb(190, 190, 190);
|
|
padding: 10px;
|
|
}
|
|
|
|
td {
|
|
text-align: center;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: #eee;
|
|
}
|
|
|
|
th[scope='col'] {
|
|
background-color: #696969;
|
|
color: #fff;
|
|
}
|
|
|
|
th[scope='row'] {
|
|
background-color: #d7d9f2;
|
|
}
|
|
|
|
tr.current {
|
|
background-color: #53fe7b;
|
|
font-weight: bold;
|
|
}
|
|
|
|
tr.warning {
|
|
background-color: #fe537b;
|
|
font-weight: bold;
|
|
}
|
|
|
|
caption {
|
|
padding: 10px;
|
|
caption-side: bottom;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
border: 2px solid rgb(200, 200, 200);
|
|
letter-spacing: 1px;
|
|
font-family: sans-serif;
|
|
font-size: 0.8rem;
|
|
}
|