Play/pause flyover
Tests / backend-test (pull_request) Successful in 6s
Tests / frontend-test (pull_request) Failing after 8s
Tests / e2e-test (pull_request) Failing after 1m29s

This commit is contained in:
(jenkins)
2026-04-17 00:26:05 +01:00
parent 0bba5b1abe
commit 76eed69c8f
2 changed files with 102 additions and 12 deletions
+59
View File
@@ -463,3 +463,62 @@
font-size: 13px;
margin-bottom: 8px;
}
.fly-controls {
display: flex;
gap: 8px;
margin-top: 10px;
}
.fly-button {
flex: 3;
padding: 12px;
border: none;
border-radius: 6px;
color: white;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.fly-button.play {
background: #3498db;
}
.fly-button.play:hover {
background: #2980b9;
}
.fly-button.pause {
background: #e74c3c;
}
.fly-button.pause:hover {
background: #c0392b;
}
.reset-flight-btn {
flex: 1;
padding: 12px;
background: #95a5a6;
color: white;
border: none;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
}
.reset-flight-btn:hover:not(:disabled) {
background: #7f8c8d;
}
.reset-flight-btn:disabled {
background: #ecf0f1;
color: #bdc3c7;
cursor: not-allowed;
}