mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 21:56:50 -04:00
Add FTA variant of field monitor with ability to save notes (closes #58).
This commit is contained in:
@@ -44,25 +44,29 @@ body {
|
||||
width: 42%;
|
||||
height: 100%;
|
||||
background-color: #333;
|
||||
font-size: 13vw;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.team-id {
|
||||
width: 100%;
|
||||
height: 80%;
|
||||
font-size: 13vw;
|
||||
}
|
||||
.team-id[data-status=no-link] {
|
||||
.team-id[data-fta="true"] {
|
||||
height: 40%;
|
||||
font-size: 6vw;
|
||||
}
|
||||
.team-id[data-status=no-link], .team-notes[data-status=no-link] {
|
||||
background-color: #963;
|
||||
}
|
||||
.team-id[data-status=ds-linked] {
|
||||
.team-id[data-status=ds-linked], .team-notes[data-status=ds-linked] {
|
||||
background-color: #ff0;
|
||||
color: #333;
|
||||
}
|
||||
.team-id[data-status=robot-linked] {
|
||||
.team-id[data-status=robot-linked], .team-notes[data-status=robot-linked] {
|
||||
background-color: #0a3;
|
||||
}
|
||||
.team-id[data-status=radio-linked] {
|
||||
.team-id[data-status=radio-linked], .team-notes[data-status=radio-linked] {
|
||||
background-color: #ff00ff;
|
||||
}
|
||||
.team-box-row {
|
||||
@@ -85,3 +89,24 @@ body {
|
||||
.team-box i {
|
||||
margin-right: 0.5vw;
|
||||
}
|
||||
.team-notes[data-fta="true"] {
|
||||
height: 40%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 0.5vw;
|
||||
font-size: 1vw;
|
||||
}
|
||||
.team-notes[data-fta="false"] {
|
||||
display: none;
|
||||
}
|
||||
.team-notes div {
|
||||
width: 96%;
|
||||
height: 96%;
|
||||
white-space: pre;
|
||||
}
|
||||
textarea {
|
||||
width: 96%;
|
||||
height: 96%;
|
||||
background-color: #ccc;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user