2026-03-12 16:25:04 -07:00
|
|
|
.Header {
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-03-16 18:16:34 -07:00
|
|
|
justify-content: flex-start;
|
|
|
|
|
gap: 12px;
|
2026-03-12 16:25:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.MissionInfo {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
margin: 10px auto 10px 4px;
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0);
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
background: rgba(0, 0, 0, 0);
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 5px 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.MissionName {
|
|
|
|
|
composes: SelectedName from "./MissionSelect.module.css";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.MissionType {
|
|
|
|
|
composes: ItemType from "./MissionSelect.module.css";
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.MissionTypeDisplayName {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.Metadata {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 2px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: calc(14 / 12);
|
|
|
|
|
text-align: right;
|
2026-03-16 18:16:34 -07:00
|
|
|
padding: 8px 0;
|
|
|
|
|
margin-left: 4px;
|
2026-03-12 16:25:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.Attribution,
|
|
|
|
|
.ServerInfo {
|
|
|
|
|
color: #83938b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.PlayerName,
|
|
|
|
|
.RecordingDate,
|
|
|
|
|
.ServerName {
|
|
|
|
|
color: #eceae7;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-24 23:50:43 -06:00
|
|
|
.EjectButton,
|
|
|
|
|
.DisconnectButton {
|
|
|
|
|
composes: DestructiveActionButton from "./Button.module.css";
|
2026-03-12 16:25:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.EjectIcon {
|
|
|
|
|
font-size: 21px;
|
|
|
|
|
margin-top: -0.5px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-13 11:08:11 -07:00
|
|
|
.Error {
|
|
|
|
|
color: rgb(255, 106, 69);
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 16:25:04 -07:00
|
|
|
@media (max-width: 899px) {
|
|
|
|
|
.Metadata {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2026-03-12 17:31:10 -07:00
|
|
|
|
|
|
|
|
.MissionInfo {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
2026-03-12 16:25:04 -07:00
|
|
|
}
|
2026-03-16 18:16:34 -07:00
|
|
|
|
|
|
|
|
.Pulsing {
|
|
|
|
|
animation: blink 1.2s ease-out infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ConnectionPing {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
background: rgba(255, 255, 255, 0.1);
|
|
|
|
|
padding: 5px 8px;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.PingDot {
|
|
|
|
|
composes: Pulsing;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
background: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ConnectionPing[data-quality="good"] .PingDot {
|
|
|
|
|
color: rgb(116, 255, 69);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ConnectionPing[data-quality="fine"] .PingDot {
|
|
|
|
|
color: rgb(255, 158, 47);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ConnectionPing[data-quality="poor"] .PingDot {
|
|
|
|
|
color: rgb(232, 63, 37);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes blink {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 0.25;
|
|
|
|
|
}
|
|
|
|
|
}
|