HASH 5c691a155ab8
DATE 2025-07-28
SUBJECT sim: update all
FILES 2 CHANGED
HASH 5c691a155ab8
DATE 2025-07-28
SUBJECT sim: update all
FILES 2 CHANGED
┌─ web/src/layouts/ChartLayout.astro ────────────────────────────────────────┐
│ diff --git a/web/src/layouts/ChartLayout.astro b/web/src/layouts/ChartLayout.astro │
│ index 9ab5f3f..c376218 100644 │
│ --- a/web/src/layouts/ChartLayout.astro │
│ +++ b/web/src/layouts/ChartLayout.astro │
│ @@ -1633,13 +1633,10 @@ class UnifiedChart { │
│ <div class="metadata-item metadata-item-wide"> │
│ <span class="metadata-label">Active Raid Buffs</span> │
│ <div class="callout-note"> │
│ - <div class="callout-note-header"> │
│ - <svg class="callout-note-icon" viewBox="0 0 24 24" fill="none" xm │
│ lns="http://www.w3.org/2000/svg"> │
│ - <path d="M13 2L3 14H12L11 22L21 10H12L13 2Z" stroke="currentCol │
│ or" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> │
│ - </svg> │
│ - <span class="callout-note-title">Note</span> │
│ - </div> │
│ - <p class="callout-note-content">Warrior and Shaman simulations are │
│ counted within the Skull Banner/Stormlash Totem totals, not as additional buffs.</ │
│ p> │
│ + <svg class="callout-note-icon" viewBox="0 0 24 24" fill="none" xmln │
│ s="http://www.w3.org/2000/svg"> │
│ + <path d="M13 2L3 14H12L11 22L21 10H12L13 2Z" stroke="currentColor │
│ " stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> │
│ + </svg> │
│ + <span class="callout-note-content">Warrior and Shaman simulations a │
│ re counted within the Skull Banner/Stormlash Totem totals, not as additional buffs │
│ .</span> │
│ </div> │
│ <span class="metadata-value metadata-value-wrap">${formatRaidBuffs(me │
│ tadata.raidBuffs)}</span> │
│ </div> │
└────────────────────────────────────────────────────────────────────────────────────┘
┌─ ...src/layouts/ChartLayout.astro ───┐
│ diff --git a/web/src/layouts/ChartLayout.ast │
│ ro b/web/src/layouts/ChartLayout.astro │
│ index 9ab5f3f..c376218 100644 │
│ --- a/web/src/layouts/ChartLayout.astro │
│ +++ b/web/src/layouts/ChartLayout.astro │
│ @@ -1633,13 +1633,10 @@ class UnifiedChart { │
│ <div class="metadata-item metadat │
│ a-item-wide"> │
│ <span class="metadata-label">Ac │
│ tive Raid Buffs</span> │
│ <div class="callout-note"> │
│ - <div class="callout-note-head │
│ er"> │
│ - <svg class="callout-note-ic │
│ on" viewBox="0 0 24 24" fill="none" xmlns="h │
│ ttp://www.w3.org/2000/svg"> │
│ - <path d="M13 2L3 14H12L11 │
│ 22L21 10H12L13 2Z" stroke="currentColor" st │
│ roke-width="2" stroke-linecap="round" stroke │
│ -linejoin="round"/> │
│ - </svg> │
│ - <span class="callout-note-t │
│ itle">Note</span> │
│ - </div> │
│ - <p class="callout-note-conten │
│ t">Warrior and Shaman simulations are counte │
│ d within the Skull Banner/Stormlash Totem to │
│ tals, not as additional buffs.</p> │
│ + <svg class="callout-note-icon │
│ " viewBox="0 0 24 24" fill="none" xmlns="htt │
│ p://www.w3.org/2000/svg"> │
│ + <path d="M13 2L3 14H12L11 2 │
│ 2L21 10H12L13 2Z" stroke="currentColor" stro │
│ ke-width="2" stroke-linecap="round" stroke-l │
│ inejoin="round"/> │
│ + </svg> │
│ + <span class="callout-note-con │
│ tent">Warrior and Shaman simulations are cou │
│ nted within the Skull Banner/Stormlash Totem │
│ totals, not as additional buffs.</span> │
│ </div> │
│ <span class="metadata-value met │
│ adata-value-wrap">${formatRaidBuffs(metadata │
│ .raidBuffs)}</span> │
│ </div> │
└──────────────────────────────────────────────┘
┌─ web/src/styles/global.css ────────────────────────────────────────────────┐
│ diff --git a/web/src/styles/global.css b/web/src/styles/global.css │
│ index f6b599c..3690158 100644 │
│ --- a/web/src/styles/global.css │
│ +++ b/web/src/styles/global.css │
│ @@ -122,13 +122,9 @@ a:hover { │
│ border-radius: 4px; │
│ padding: 10px 12px; │
│ margin: 8px 0; │
│ -} │
│ - │
│ -.callout-note-header { │
│ display: flex; │
│ align-items: center; │
│ - gap: 6px; │
│ - margin-bottom: 4px; │
│ + gap: 8px; │
│ } │
│ │
│ .callout-note-icon { │
│ @@ -138,19 +134,12 @@ a:hover { │
│ flex-shrink: 0; │
│ } │
│ │
│ -.callout-note-title { │
│ - color: var(--note-color); │
│ - margin: 0; │
│ - font-size: 0.9em; │
│ - font-weight: 600; │
│ -} │
│ - │
│ .callout-note-content { │
│ color: var(--text-primary); │
│ line-height: 1.4; │
│ - margin-left: 22px; │
│ - margin-bottom: 0; │
│ + margin: 0; │
│ font-size: 0.9em; │
│ + flex: 1; │
│ } │
│ │
│ /* Responsive design */ │
└────────────────────────────────────────────────────────────────────────────────────┘
┌─ web/src/styles/global.css ──────────┐
│ diff --git a/web/src/styles/global.css b/web │
│ /src/styles/global.css │
│ index f6b599c..3690158 100644 │
│ --- a/web/src/styles/global.css │
│ +++ b/web/src/styles/global.css │
│ @@ -122,13 +122,9 @@ a:hover { │
│ border-radius: 4px; │
│ padding: 10px 12px; │
│ margin: 8px 0; │
│ -} │
│ - │
│ -.callout-note-header { │
│ display: flex; │
│ align-items: center; │
│ - gap: 6px; │
│ - margin-bottom: 4px; │
│ + gap: 8px; │
│ } │
│ │
│ .callout-note-icon { │
│ @@ -138,19 +134,12 @@ a:hover { │
│ flex-shrink: 0; │
│ } │
│ │
│ -.callout-note-title { │
│ - color: var(--note-color); │
│ - margin: 0; │
│ - font-size: 0.9em; │
│ - font-weight: 600; │
│ -} │
│ - │
│ .callout-note-content { │
│ color: var(--text-primary); │
│ line-height: 1.4; │
│ - margin-left: 22px; │
│ - margin-bottom: 0; │
│ + margin: 0; │
│ font-size: 0.9em; │
│ + flex: 1; │
│ } │
│ │
│ /* Responsive design */ │
└──────────────────────────────────────────────┘
[ BACK TO LOG ]
──────────────────────────────────────────────────────────────────────────────────────
OOKNET
────────────────────────────────────────────────
OOKNET