MediaWiki:Gadget-wix-interactive.css: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1,587:
min-width: 60px;
font-size: 0.75em;
}
}
 
 
/* ================================================================
CSM ROLLFORWARD — data-wix-module="csm-rollforward"
Horizontal waterfall: FY24 opening → movements → FY25 closing.
================================================================ */
 
 
/* ── 64. Slider Grid ────────────────────────────────────────────── */
 
.wix-csm-sliders {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 12px;
margin-bottom: 1.25rem;
}
 
.wix-csm-slider-group label {
font-size: 0.8em;
color: var(--wix-text-muted);
display: block;
margin-bottom: 4px;
}
 
.wix-csm-slider-row {
display: flex;
align-items: center;
gap: 8px;
}
 
.wix-csm-slider-row input[type="range"] {
flex: 1;
}
 
.wix-csm-slider-val {
font-size: 0.8em;
font-weight: 500;
min-width: 52px;
text-align: right;
}
 
 
/* ── 65. Chart Container ────────────────────────────────────────── */
 
.wix-csm-chart {
position: relative;
margin-bottom: 0.5rem;
}
 
.wix-csm-chart canvas {
width: 100%;
height: 100%;
}
 
 
/* ── 66. Explainer Panel ────────────────────────────────────────── */
 
.wix-csm-explainer {
padding: 0.75rem 1rem;
border-radius: var(--wix-radius);
border: 1px solid var(--wix-border);
background: var(--wix-bg-subtle);
margin-bottom: 0.75rem;
}
 
.wix-csm-explainer--hidden {
display: none;
}
 
.wix-csm-ex-head {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 6px;
}
 
.wix-csm-ex-dot {
width: 10px;
height: 10px;
border-radius: 2px;
}
 
.wix-csm-ex-title {
font-weight: 500;
font-size: 0.9em;
}
 
.wix-csm-ex-val {
font-size: 0.85em;
color: var(--wix-text-muted);
margin-left: auto;
}
 
.wix-csm-ex-body {
font-size: 0.85em;
color: var(--wix-text-muted);
line-height: 1.6;
margin: 0;
}
 
 
/* ── 67. Hint ───────────────────────────────────────────────────── */
 
.wix-csm-hint {
font-size: 0.8em;
color: var(--wix-text-muted);
margin-top: 0.5rem;
}
 
 
/* ── 68. Mobile ─────────────────────────────────────────────────── */
 
@media (max-width: 480px) {
.wix-csm-sliders {
grid-template-columns: 1fr;
}
}
 
 
/* ================================================================
BUILDING BLOCKS — data-wix-module="building-blocks"
Stacked-bar visualisation of initial recognition building blocks.
================================================================ */
 
 
/* ── 69. Status Banner ──────────────────────────────────────────── */
 
.wix-bb-banner {
display: flex;
align-items: center;
gap: 0.65rem;
padding: 0.65rem 1rem;
border-radius: var(--wix-radius);
margin-bottom: 1.25rem;
font-size: 0.85em;
font-weight: 600;
border: 1px solid transparent;
transition:
background var(--wix-transition),
color var(--wix-transition);
}
 
.wix-bb-banner--profit {
background: var(--wix-correct-bg);
color: var(--wix-correct);
border-color: var(--wix-correct-border, #82e0aa);
}
 
.wix-bb-banner--onerous {
background: var(--wix-wrong-bg);
color: var(--wix-wrong);
border-color: var(--wix-wrong-border, #f1948a);
}
 
.wix-bb-banner-detail {
font-weight: 400;
opacity: 0.85;
}
 
 
/* ── 70. Chart Area ─────────────────────────────────────────────── */
 
.wix-bb-chart {
background: var(--wix-bg);
border: 1px solid var(--wix-border);
border-radius: var(--wix-radius);
padding: 1.25rem 1rem 0.75rem;
margin-bottom: 1.25rem;
overflow: hidden;
}
 
 
/* ── 71. Bar Row ────────────────────────────────────────────────── */
 
.wix-bb-row {
display: flex;
align-items: flex-end;
justify-content: center;
gap: 1.4rem;
height: 340px;
padding-bottom: 20px;
position: relative;
}
 
.wix-bb-row::before {
content: '';
position: absolute;
bottom: 19px;
left: 0;
right: 0;
height: 1px;
background: var(--wix-border);
}
 
.wix-bb-zero {
position: absolute;
bottom: 22px;
left: 6px;
font-size: 0.7em;
color: var(--wix-text-muted);
font-weight: 500;
}
 
 
/* ── 72. Bar Groups + Stacks ────────────────────────────────────── */
 
.wix-bb-group {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.35rem;
width: 100px;
}
 
.wix-bb-stack {
display: flex;
flex-direction: column;
justify-content: flex-end;
width: 62px;
height: 260px;
}
 
.wix-bb-seg {
width: 100%;
border-radius: 0;
position: relative;
transition: height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
 
.wix-bb-seg:first-child {
border-radius: var(--wix-radius) var(--wix-radius) 0 0;
}
 
.wix-bb-seg-val {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
font-size: 0.68em;
font-weight: 700;
color: #fff;
white-space: nowrap;
pointer-events: none;
}
 
.wix-bb-bar-label {
font-size: 0.72em;
font-weight: 600;
text-align: center;
color: var(--wix-text-muted);
line-height: 1.25;
}
 
 
/* ── 73. Operator Signs ─────────────────────────────────────────── */
 
.wix-bb-op {
font-size: 1.5rem;
color: var(--wix-text-muted);
align-self: center;
padding-bottom: 20px;
opacity: 0.5;
}
 
 
/* ── 74. Legend ──────────────────────────────────────────────────── */
 
.wix-bb-legend {
display: flex;
flex-wrap: wrap;
gap: 0.85rem;
justify-content: center;
margin-top: 0.25rem;
font-size: 0.72em;
color: var(--wix-text-muted);
}
 
.wix-bb-legend-item {
display: flex;
align-items: center;
gap: 0.3rem;
font-weight: 500;
}
 
.wix-bb-legend-swatch {
width: 12px;
height: 12px;
border-radius: 3px;
}
 
 
/* ── 75. Slider Controls ────────────────────────────────────────── */
 
.wix-bb-controls {
margin-bottom: 1.25rem;
}
 
.wix-bb-controls-title {
font-size: 0.78em;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--wix-text-muted);
margin-bottom: 0.85rem;
}
 
.wix-bb-slider-row {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.75rem;
}
 
.wix-bb-slider-label {
font-size: 0.82em;
font-weight: 600;
width: 160px;
flex-shrink: 0;
display: flex;
align-items: center;
gap: 0.4rem;
}
 
.wix-bb-slider-dot {
width: 10px;
height: 10px;
border-radius: 50%;
flex-shrink: 0;
}
 
.wix-bb-slider-row input[type="range"] {
flex: 1;
}
 
.wix-bb-slider-val {
width: 100px;
text-align: right;
font-size: 0.82em;
font-weight: 700;
font-variant-numeric: tabular-nums;
flex-shrink: 0;
}
 
 
/* ── 76. Insight Box ────────────────────────────────────────────── */
 
.wix-bb-insight {
font-size: 0.85em;
line-height: 1.65;
color: var(--wix-text);
}
 
.wix-bb-insight strong { font-weight: 700; }
.wix-bb-hl-csm { color: #27ae60; font-weight: 700; }
.wix-bb-hl-loss { color: #e74c3c; font-weight: 700; }
 
 
/* ── 77. Mobile ─────────────────────────────────────────────────── */
 
@media (max-width: 640px) {
.wix-bb-row { gap: 0.5rem; }
.wix-bb-group { width: 68px; }
.wix-bb-stack { width: 44px; }
.wix-bb-bar-label { font-size: 0.62em; }
.wix-bb-slider-label { width: 120px; font-size: 0.76em; }
.wix-bb-slider-val { width: 85px; font-size: 0.76em; }
.wix-bb-op { font-size: 1.2rem; }
}
 
 
/* ================================================================
IMPACT SORT — data-wix-module="impact-sort"
Binary classification: "Adjusts CSM" vs "Hits P&L directly".
================================================================ */
 
 
/* ── 78. Decision Rule Banner ───────────────────────────────────── */
 
.wix-is-rule {
font-size: 0.82em;
line-height: 1.5;
background: #fefce8;
border: 1px solid #fde68a;
border-radius: var(--wix-radius);
padding: 0.6rem 1rem;
margin-bottom: 1.25rem;
}
 
 
/* ── 79. Score Badges ───────────────────────────────────────────── */
 
.wix-is-score-row {
display: flex;
gap: 0.75rem;
margin-bottom: 1.25rem;
}
 
.wix-is-badge {
font-size: 0.78em;
font-weight: 600;
padding: 0.3rem 0.65rem;
border-radius: 20px;
border: 1px solid;
}
 
.wix-is-badge--correct {
background: var(--wix-correct-bg);
color: var(--wix-correct);
border-color: var(--wix-correct-border, #82e0aa);
}
 
.wix-is-badge--wrong {
background: var(--wix-wrong-bg);
color: var(--wix-wrong);
border-color: var(--wix-wrong-border, #f1948a);
}
 
 
/* ── 80. Scenario Card ──────────────────────────────────────────── */
 
.wix-is-card {
background: var(--wix-bg);
border: 2px solid var(--wix-border);
border-radius: var(--wix-radius);
padding: 1rem 1.15rem;
margin-bottom: 1.25rem;
position: relative;
transition: border-color var(--wix-transition);
}
 
.wix-is-card-num {
font-size: 0.68em;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--wix-text-muted);
margin-bottom: 0.4rem;
}
 
.wix-is-card-text {
font-size: 0.88em;
line-height: 1.55;
font-weight: 500;
}
 
.wix-is-card-icon {
position: absolute;
top: 0.85rem;
right: 0.85rem;
font-size: 1.1em;
}
 
.wix-is-card--correct { border-color: var(--wix-correct); }
.wix-is-card--wrong { border-color: var(--wix-wrong); }
 
 
/* ── 81. Choice Buttons ─────────────────────────────────────────── */
 
.wix-is-choices {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
margin-bottom: 1.25rem;
}
 
.wix-is-choice {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.3rem;
padding: 1rem;
border-radius: var(--wix-radius);
border: 2px dashed;
font: inherit;
cursor: pointer;
transition:
transform 0.15s ease,
box-shadow 0.15s ease,
background 0.15s ease;
-webkit-tap-highlight-color: transparent;
}
 
.wix-is-choice:hover {
transform: scale(1.02);
}
 
.wix-is-choice:active {
transform: scale(0.98);
}
 
.wix-is-choice:disabled {
opacity: 0.45;
cursor: default;
transform: none;
}
 
.wix-is-choice-icon { font-size: 1.4em; }
 
.wix-is-choice-title {
font-size: 0.85em;
font-weight: 700;
}
 
.wix-is-choice-sub {
font-size: 0.72em;
color: var(--wix-text-muted);
font-weight: 500;
}
 
.wix-is-choice--csm {
border-color: #bfdbfe;
background: #eff6ff;
}
.wix-is-choice--csm .wix-is-choice-title { color: #2563eb; }
 
.wix-is-choice--pl {
border-color: #fecaca;
background: #fef2f2;
}
.wix-is-choice--pl .wix-is-choice-title { color: #dc2626; }
 
 
/* ── 82. Feedback Panel ─────────────────────────────────────────── */
 
.wix-is-feedback {
border-radius: var(--wix-radius);
padding: 1rem 1.15rem;
margin-bottom: 1.25rem;
font-size: 0.85em;
line-height: 1.6;
animation: wixFadeIn 0.3s ease;
}
 
.wix-is-feedback--correct {
background: var(--wix-correct-bg);
border: 1px solid var(--wix-correct-border, #82e0aa);
color: var(--wix-correct);
}
 
.wix-is-feedback--wrong {
background: var(--wix-wrong-bg);
border: 1px solid var(--wix-wrong-border, #f1948a);
color: var(--wix-wrong);
}
 
.wix-is-fb-head {
font-weight: 700;
margin-bottom: 0.25rem;
font-size: 0.9em;
}
 
 
/* ── 83. Final Screen ───────────────────────────────────────────── */
 
.wix-is-final {
text-align: center;
padding: 2rem 1.25rem;
}
 
.wix-is-final-icon { font-size: 2.5rem; margin-bottom: 0.65rem; }
 
.wix-is-final-title {
font-weight: 600;
font-size: 1.25em;
margin-bottom: 0.4rem;
}
 
.wix-is-final-body {
font-size: 0.88em;
color: var(--wix-text-muted);
line-height: 1.6;
max-width: 500px;
margin: 0 auto 1.15rem;
}
 
 
/* ── 84. Mobile ─────────────────────────────────────────────────── */
 
@media (max-width: 480px) {
.wix-is-choices {
grid-template-columns: 1fr;
}
}
 
 
/* ================================================================
INCOME BUILDER — data-wix-module="income-builder"
Sort 9 items into 3 IFRS 17 income statement sections.
================================================================ */
 
/* ── category colour tokens (scoped) ── */
[data-wix-module="income-builder"] {
--ib-rev: #1d4ed8;
--ib-rev-bg: #eff6ff;
--ib-rev-border: #bfdbfe;
--ib-exp: #b45309;
--ib-exp-bg: #fffbeb;
--ib-exp-border: #fde68a;
--ib-fin: #7c3aed;
--ib-fin-bg: #f5f3ff;
--ib-fin-border: #ddd6fe;
--ib-res: #15803d;
--ib-res-bg: #f0fdf4;
--ib-res-border: #bbf7d0;
}
 
 
/* ── 85. Tile (current item) ────────────────────────────────────── */
 
.wix-ib-tile {
display: inline-flex;
align-items: center;
gap: 0.4rem;
background: var(--wix-bg);
border: 2px solid var(--wix-border);
border-radius: var(--wix-radius);
padding: 0.55rem 0.9rem;
font-size: 0.82em;
font-weight: 600;
line-height: 1.35;
transition: border-color var(--wix-transition);
}
 
.wix-ib-tile-desc {
font-size: 0.76em;
color: var(--wix-text-muted);
margin-top: 0.35rem;
padding-left: 0.15rem;
line-height: 1.45;
}
 
 
/* ── 86. Choice Buttons (3-column) ──────────────────────────────── */
 
.wix-ib-choices {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.6rem;
margin-bottom: 1.25rem;
}
 
.wix-ib-choice {
padding: 0.65rem 0.4rem;
border-radius: var(--wix-radius);
border: 2px solid;
font: inherit;
font-size: 0.75em;
font-weight: 700;
text-align: center;
cursor: pointer;
line-height: 1.35;
transition: transform 0.15s, opacity 0.15s;
-webkit-tap-highlight-color: transparent;
}
 
.wix-ib-choice:active { transform: scale(0.97); }
.wix-ib-choice:disabled { opacity: 0.45; cursor: default; transform: none; }
 
.wix-ib-choice--rev { background: var(--ib-rev-bg); border-color: var(--ib-rev-border); color: var(--ib-rev); }
.wix-ib-choice--exp { background: var(--ib-exp-bg); border-color: var(--ib-exp-border); color: var(--ib-exp); }
.wix-ib-choice--fin { background: var(--ib-fin-bg); border-color: var(--ib-fin-border); color: var(--ib-fin); }
 
 
/* ── 87. Income Statement Skeleton ──────────────────────────────── */
 
.wix-ib-stmt {
background: var(--wix-bg);
border: 1px solid var(--wix-border);
border-radius: var(--wix-radius);
overflow: hidden;
margin-bottom: 1.25rem;
}
 
.wix-ib-section {
padding: 0.75rem 1rem;
border-bottom: 1px solid var(--wix-border);
}
 
.wix-ib-section:last-child { border-bottom: none; }
 
.wix-ib-sec-head {
display: flex;
align-items: center;
gap: 0.45rem;
margin-bottom: 0.4rem;
}
 
.wix-ib-sec-dot {
width: 10px;
height: 10px;
border-radius: 50%;
flex-shrink: 0;
}
 
.wix-ib-sec-title {
font-size: 0.82em;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
}
 
.wix-ib-sec-count {
font-size: 0.7em;
font-weight: 600;
color: var(--wix-text-muted);
margin-left: auto;
}
 
 
/* ── 88. Drop Area + Placed Chips ───────────────────────────────── */
 
.wix-ib-drop {
min-height: 40px;
border: 2px dashed var(--wix-border);
border-radius: var(--wix-radius);
padding: 0.4rem;
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
align-items: center;
}
 
.wix-ib-drop-ph {
font-size: 0.76em;
color: #b0b0b0;
font-style: italic;
padding: 0.2rem 0.35rem;
}
 
.wix-ib-chip {
display: inline-flex;
align-items: center;
gap: 0.25rem;
padding: 0.3rem 0.6rem;
border-radius: var(--wix-radius);
font-size: 0.74em;
font-weight: 600;
animation: wixFadeIn 0.3s ease;
}
 
.wix-ib-chip--rev { background: var(--ib-rev-bg); color: var(--ib-rev); border: 1px solid var(--ib-rev-border); }
.wix-ib-chip--exp { background: var(--ib-exp-bg); color: var(--ib-exp); border: 1px solid var(--ib-exp-border); }
.wix-ib-chip--fin { background: var(--ib-fin-bg); color: var(--ib-fin); border: 1px solid var(--ib-fin-border); }
 
 
/* ── 89. Result Row ─────────────────────────────────────────────── */
 
.wix-ib-result {
background: var(--ib-res-bg);
border-bottom: 1px solid var(--ib-res-border);
padding: 0.6rem 1rem;
display: flex;
align-items: center;
justify-content: space-between;
}
 
.wix-ib-result-label {
font-size: 0.82em;
font-weight: 700;
color: var(--ib-res);
}
 
.wix-ib-result-eq {
font-size: 0.76em;
font-weight: 600;
color: var(--ib-res);
font-style: italic;
}
 
 
/* ── 90. Mobile ─────────────────────────────────────────────────── */
 
@media (max-width: 480px) {
.wix-ib-choices {
grid-template-columns: 1fr;
}
}
 
 
/* ================================================================
GM vs PAA / VFA STEPPER — data-wix-module="gm-paa"
Side-by-side table: step through General Model vs PAA or VFA.
================================================================ */
 
[data-wix-module="gm-paa"] {
--gp-gm: #1a5276;
--gp-alt: #6b4c8a;
--gp-alt-light: #f3eef8;
--gp-yes: #217a4b;
--gp-no: #b8423a;
}
 
/* VFA variant overrides (applied via JS-set class) */
[data-wix-module="gm-paa"].wix-gp--vfa {
--gp-alt: #7a4422;
--gp-alt-light: #f5ede6;
}
 
 
/* ── 91. Scenario Callout ───────────────────────────────────────── */
 
.wix-gp-scenario {
display: inline-block;
background: #fdf6e0;
border: 1px solid #e6d9a0;
border-radius: var(--wix-radius);
padding: 0.5rem 0.85rem;
font-size: 0.78em;
color: #6b5a10;
line-height: 1.45;
margin-bottom: 1.25rem;
}
 
 
/* ── 92. Comparison Table ───────────────────────────────────────── */
 
.wix-gp-table {
background: var(--wix-bg);
border: 1px solid var(--wix-border);
border-radius: var(--wix-radius);
overflow: hidden;
margin-bottom: 1.25rem;
}
 
.wix-gp-thead {
display: grid;
grid-template-columns: 1fr 80px 80px;
padding: 0.6rem 1rem;
border-bottom: 2px solid var(--wix-border);
align-items: center;
}
 
.wix-gp-th {
font-size: 0.68em;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
text-align: center;
}
 
.wix-gp-th:first-child {
text-align: left;
color: var(--wix-text-muted);
}
 
.wix-gp-th--gm { color: var(--gp-gm); }
.wix-gp-th--alt { color: var(--gp-alt); }
 
 
/* ── 93. Row ────────────────────────────────────────────────────── */
 
.wix-gp-row {
display: grid;
grid-template-columns: 1fr 80px 80px;
padding: 0 1rem;
border-bottom: 1px solid var(--wix-border-subtle);
transition: background var(--wix-transition);
}
 
.wix-gp-row:last-child { border-bottom: none; }
 
.wix-gp-row-label {
font-size: 0.8em;
padding: 0.65rem 0;
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--wix-text-muted);
transition: color 0.3s;
}
 
.wix-gp-row--revealed .wix-gp-row-label { color: var(--wix-text); }
.wix-gp-row--current { background: var(--gp-alt-light); }
.wix-gp-row--current .wix-gp-row-label { font-weight: 600; }
 
.wix-gp-num {
font-size: 0.65em;
font-weight: 700;
width: 18px;
flex-shrink: 0;
font-variant-numeric: tabular-nums;
}
 
.wix-gp-mark {
display: flex;
align-items: center;
justify-content: center;
padding: 0.65rem 0;
font-size: 1.05em;
font-weight: 700;
opacity: 0;
transition: opacity 0.3s;
}
 
.wix-gp-row--revealed .wix-gp-mark { opacity: 1; }
.wix-gp-mark--yes { color: var(--gp-yes); }
.wix-gp-mark--no { color: var(--gp-no); }
.wix-gp-mark--mod { color: var(--gp-alt); font-size: 0.7em; font-weight: 700; }
 
 
/* ── 94. Explanation Box ────────────────────────────────────────── */
 
.wix-gp-explain {
background: var(--wix-bg);
border: 1px solid var(--wix-border);
border-radius: var(--wix-radius);
padding: 0.75rem 1rem;
margin-bottom: 1rem;
min-height: 44px;
}
 
.wix-gp-explain-step {
font-size: 0.64em;
font-weight: 600;
color: var(--gp-alt);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 0.2rem;
}
 
.wix-gp-explain-body {
font-size: 0.82em;
color: var(--wix-text-muted);
line-height: 1.5;
}
 
 
/* ── 95. Counters Row ───────────────────────────────────────────── */
 
.wix-gp-counters {
display: flex;
gap: 0.6rem;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 1.25rem;
}
 
.wix-gp-cbox {
background: var(--wix-bg);
border: 1px solid var(--wix-border);
border-radius: var(--wix-radius);
padding: 0.5rem 1rem;
text-align: center;
min-width: 100px;
}
 
.wix-gp-cbox-num {
font-size: 1.25em;
font-weight: 700;
font-variant-numeric: tabular-nums;
transition: color 0.3s;
}
 
.wix-gp-cbox-num--kept { color: var(--gp-yes); }
.wix-gp-cbox-num--skip { color: var(--gp-no); }
.wix-gp-cbox-num--pct { color: var(--gp-alt); }
 
.wix-gp-cbox-lbl {
font-size: 0.62em;
color: var(--wix-text-muted);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-top: 0.15rem;
}
 
 
/* ── 96. Controls ───────────────────────────────────────────────── */
 
.wix-gp-controls {
display: flex;
justify-content: center;
gap: 0.6rem;
}
 
 
/* ── 97. Footnote ───────────────────────────────────────────────── */
 
.wix-gp-footnote {
text-align: center;
font-size: 0.72em;
color: var(--wix-text-muted);
margin-top: 1rem;
}
 
 
/* ── 98. Mobile ─────────────────────────────────────────────────── */
 
@media (max-width: 520px) {
.wix-gp-thead,
.wix-gp-row {
grid-template-columns: 1fr 64px 64px;
padding-left: 0.6rem;
padding-right: 0.6rem;
}
}