mirror of
https://github.com/suitenumerique/docs
synced 2026-04-21 13:37:20 +00:00
🐛(frontend) fix unfold subdocs not clickable at the bottom
At the bottom of the tree panel, the subdocs were not clickable due to a CSS issue. This commit adjusts the CSS to ensure that the subdocs can be unfolded properly.
This commit is contained in:
parent
b78550b513
commit
e79f3281b1
2 changed files with 12 additions and 0 deletions
|
|
@ -37,6 +37,7 @@ and this project adheres to
|
|||
in the ws #1152
|
||||
- 🐛(frontend) fix action buttons not clickable #1162
|
||||
- 🐛(frontend) fix crash share modal on grid options #1174
|
||||
- 🐛(frontend) fix unfold subdocs not clickable at the bottom #1179
|
||||
|
||||
## [3.4.0] - 2025-07-09
|
||||
|
||||
|
|
|
|||
|
|
@ -51,6 +51,17 @@
|
|||
filter: var(--c--components--image-system-filter);
|
||||
}
|
||||
|
||||
/**
|
||||
* Toast
|
||||
*/
|
||||
.c__toast__container {
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.c__toast__container:has(.c__toast) {
|
||||
z-index: 10000;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Inter;
|
||||
font-style: italic;
|
||||
|
|
|
|||
Loading…
Reference in a new issue