N°3900 - Breadcrumbs: Fix all items being hidden even when they should not (when browser's window is zoomed in/out)

This commit is contained in:
Molkobain
2021-09-23 16:41:12 +02:00
parent 7404599721
commit 7ae4fe06ed
3 changed files with 6 additions and 4 deletions

View File

@@ -4,6 +4,7 @@
*/
$ibo-breadcrumbs--margin-right: 16px !default;
$ibo-breadcrumbs--padding: 2px !default;
$ibo-breadcrumbs--item--text-color: $ibo-color-grey-800 !default;
@@ -31,6 +32,7 @@ $ibo-breadcrumbs--previous-item-label--max-width: 200px !default;
.ibo-breadcrumbs{
position: relative;
margin-right: $ibo-breadcrumbs--margin-right;
padding: $ibo-breadcrumbs--padding; /* Important: N°3900 The padding is here to prevent a bug in the JS Observer API when the window is zoomed in/out, in which case all items respond as being hidden even when they are not. */
@extend %ibo-full-height-content;
&.ibo-is-overflowing {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long