экспорт маппинга

This commit is contained in:
2026-08-19 17:32:13 +03:00
parent c643a183d8
commit 614a61168a
17 changed files with 1012 additions and 35 deletions

View File

@@ -173,7 +173,7 @@ h2 { margin: 0 0 10px; color: #cbd8ea; font-size: 12px; letter-spacing: .08em; t
/* Runtime and rendered controls */
.runtime-view { width: 100%; height: 100vh; min-height: 0; display: flex; flex-direction: column; overflow: hidden; background: #080d15; }
.runtime-topbar { min-height: 70px; display: grid; grid-template-columns: minmax(160px, .55fr) minmax(220px, 1fr) max-content; align-items: center; column-gap: 15px; row-gap: 8px; flex: 0 0 auto; padding: 9px 18px 0; border-bottom: 1px solid var(--line); background: rgba(8,13,21,.97); position: sticky; top: 0; z-index: 30; backdrop-filter: blur(16px); }
.runtime-topbar { min-height: 70px; display: grid; grid-template-columns: minmax(160px, .55fr) minmax(220px, 1fr) max-content; align-items: center; column-gap: 15px; row-gap: 8px; flex: 0 0 auto; padding: 9px 18px 0; border-bottom: 1px solid var(--line); background: #080d15; position: sticky; top: 0; z-index: 30; }
.runtime-actions { flex-wrap: nowrap; white-space: nowrap; }
.runtime-actions > .hockey-selected-chip { display: none !important; }
.runtime-topbar > div:first-child .eyebrow { font-size: 8px; }
@@ -182,7 +182,16 @@ h2 { margin: 0 0 10px; color: #cbd8ea; font-size: 12px; letter-spacing: .08em; t
.runtime-tab { min-height: 35px; padding: 0 13px; color: #9dafc7; background: #141f31; border: 1px solid var(--line); border-radius: 9px; }
.runtime-tab.active { color: #06130f; background: var(--accent); border-color: transparent; font-weight: 800; }
.runtime-viewport { min-height: 0; display: flex; align-items: center; justify-content: center; flex: 1 1 auto; overflow: hidden; padding: 10px; }
.runtime-stage { position: relative; margin: 0 auto; transform-origin: top left; overflow: hidden; box-shadow: 0 18px 70px rgba(0,0,0,.36); }
.runtime-stage {
position: relative;
margin: 0 auto;
transform-origin: top left;
overflow: hidden;
box-shadow: 0 18px 70px rgba(0,0,0,.36);
/* Keep browser-native font rasterization in runtime mode. */
text-rendering: optimizeLegibility;
-webkit-font-smoothing: auto;
}
.runtime-component { position: absolute; overflow: hidden; }
.ui-box { width: 100%; height: 100%; overflow: hidden; }
@@ -7208,3 +7217,37 @@ body.hockey-navigation-open .runtime-viewport.has-hockey-pbp { gap: 14px !import
border-color: rgba(255, 112, 112, .42);
background: rgba(126, 35, 47, .2);
}
/* BUILD71: side-specific penalty selection identifiers */
.hpd-team-penalty-card.is-preview-selected {
outline: 2px solid rgba(255, 255, 255, .72);
outline-offset: -2px;
}
.hpd-team-card-identifiers {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 4px 10px;
margin-top: 6px;
padding: 7px 9px;
border: 1px solid rgba(255, 255, 255, .12);
border-radius: 7px;
background: rgba(0, 0, 0, .16);
font-size: 10px;
line-height: 1.25;
}
.hpd-team-card-identifiers span {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.hpd-team-card-identifiers b {
display: block;
margin-bottom: 1px;
opacity: .58;
font-size: 8px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .035em;
}