fix: remove black blob pseudo-element, revert sm icon to 22px
This commit is contained in:
@@ -1,5 +1,13 @@
|
|||||||
# Changelog – helldivers-trainer
|
# Changelog – helldivers-trainer
|
||||||
|
|
||||||
|
## [2.1.3] – 2026-03-31
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- **Schwarzes Blob hinter Stratagem-Icon**: `::before` Pseudoelement ohne `position: relative` am Parent positionierte sich falsch und wurde als schwarzer Kreis gerendert — entfernt
|
||||||
|
- **Tabellen-Spaltenumbrüche**: `stratagem-icon-sm` wieder auf 22px (von 26px) damit Stratagemnamen in der History-Tabelle nicht umbrechen
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## [2.1.2] – 2026-03-31
|
## [2.1.2] – 2026-03-31
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
+3
-14
@@ -1670,17 +1670,6 @@ select option { background: var(--bg-surface2); }
|
|||||||
height: 130px;
|
height: 130px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Circular glowing backdrop behind the main icon */
|
|
||||||
.stratagem-icon-wrap::before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
width: 120px;
|
|
||||||
height: 120px;
|
|
||||||
border-radius: 50%;
|
|
||||||
background: radial-gradient(circle, rgba(255,210,0,0.10) 0%, rgba(255,210,0,0.03) 60%, transparent 80%);
|
|
||||||
border: 1px solid rgba(255,210,0,0.15);
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stratagem-icon-lg {
|
.stratagem-icon-lg {
|
||||||
width: 110px;
|
width: 110px;
|
||||||
@@ -1715,13 +1704,13 @@ select option { background: var(--bg-surface2); }
|
|||||||
}
|
}
|
||||||
|
|
||||||
.stratagem-icon-sm {
|
.stratagem-icon-sm {
|
||||||
width: 26px;
|
width: 22px;
|
||||||
height: 26px;
|
height: 22px;
|
||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
filter: invert(1) sepia(1) saturate(3) hue-rotate(0deg) brightness(1.2);
|
filter: invert(1) sepia(1) saturate(3) hue-rotate(0deg) brightness(1.2);
|
||||||
opacity: 0.9;
|
opacity: 0.9;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
margin-right: 6px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Icon shake animation */
|
/* Icon shake animation */
|
||||||
|
|||||||
Reference in New Issue
Block a user