Fixed the sidebar's icons width on collapsed state

This commit is contained in:
Vlyan
2025-03-07 18:48:00 +01:00
parent 2f50f84e0e
commit 65774a77d4
3 changed files with 9 additions and 6 deletions

View File

@@ -6,11 +6,13 @@ Date format : day/month/year
> - `foundry-version`: Stick to the major version of FoundryVTT. > - `foundry-version`: Stick to the major version of FoundryVTT.
> - `system-version`: System functionalities and Fixes. > - `system-version`: System functionalities and Fixes.
## 1.12.3 - ??/03/2025 - Fixes and Compendiums Filters (Thx Litasa #41) ## 1.12.3 - ??/03/2025 - Fixes and Compendiums Filters
- Separated the reference and the page number from book reference for filtering purpose. - Added Compendiums Filters (Thx to Litasa #41)
- Adding filters in compendium for rarity, ring, and source. - Separated the reference and the page number from book reference for filtering purpose.
- Add option for GM to limit what sources is being displayed to the players in compendiums. GM can still see everything and give players items/techniques if needed. - Adding filters in compendium for rarity, ring, and source.
- Add option for GM to limit what sources is being displayed to the players in compendiums. GM can still see everything and give players items/techniques if needed.
- Fixed Npc Generator : Actor now update correctly. - Fixed Npc Generator : Actor now update correctly.
- Fixed the sidebar's icons width on collapsed state.
## 1.12.2 - 16/09/2024 - Bugfixes ## 1.12.2 - 16/09/2024 - Bugfixes
- Modified : The checkbox `reverseFatigueBar` is now a drop-down with `none`/`fatigue`/`strife`/`both`, and is now an client preference. - Modified : The checkbox `reverseFatigueBar` is now a drop-down with `none`/`fatigue`/`strife`/`both`, and is now an client preference.

File diff suppressed because one or more lines are too long

View File

@@ -147,6 +147,7 @@ button {
} }
> .item { > .item {
flex: 0 0 1.5rem; flex: 0 0 1.5rem;
width: 1.5rem;
height: 1.5rem; height: 1.5rem;
line-height: 1.5rem; line-height: 1.5rem;
margin: 0.1rem; margin: 0.1rem;
@@ -1000,7 +1001,7 @@ l5r5e-multi-select {
&.overflowing { &.overflowing {
// Apply mask-image with linear gradient fade-out effect // Apply mask-image with linear gradient fade-out effect
mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%); mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
// Transition for smooth height change and mask removal // Transition for smooth height change and mask removal
transition: height 0.3s ease, mask-image 0.3s ease; transition: height 0.3s ease, mask-image 0.3s ease;
} }