ui: Move map-specific css from App.css to Map.scss
This commit is contained in:
parent
5d5091d914
commit
e9b50efc68
|
@ -301,45 +301,6 @@ body {
|
|||
background: #d30d09;
|
||||
}
|
||||
|
||||
.telemetry-console {
|
||||
z-index: 2;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 130px;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
border-radius: 5px;
|
||||
border: 3px solid #aaa;
|
||||
padding: 0.5em;
|
||||
color: white;
|
||||
font-family: Consolas, "Courier New", monospace;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.telemetry-console .date {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.telemetry-console .source {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.telemetry-lines {
|
||||
z-index: 3;
|
||||
position: absolute;
|
||||
bottom: 103px;
|
||||
right: 20px;
|
||||
background: #000000cc;
|
||||
border-radius: 5px;
|
||||
padding: 1px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.map-legend {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Full Logs Page
|
||||
*/
|
||||
|
|
|
@ -1,7 +1,46 @@
|
|||
.map-legend {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.map-window {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.telemetry-console {
|
||||
z-index: 2;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 130px;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
border-radius: 5px;
|
||||
border: 3px solid #aaa;
|
||||
padding: 0.5em;
|
||||
color: white;
|
||||
font-family: Consolas, "Courier New", monospace;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.telemetry-console .date {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.telemetry-console .source {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.telemetry-lines {
|
||||
z-index: 3;
|
||||
position: absolute;
|
||||
bottom: 103px;
|
||||
right: 20px;
|
||||
background: #000000cc;
|
||||
border-radius: 5px;
|
||||
padding: 1px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.net-graph-wrapper {
|
||||
height: calc(100% - 130px);
|
||||
width: 100%;
|
||||
|
|
Loading…
Reference in New Issue