@i-cell/ids-styles 0.0.49 → 0.0.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5485,8 +5485,6 @@ button.ids-chip.ids-chip-outlined.ids-chip-dark:not(:disabled):active > .ids-chi
5485
5485
  }
5486
5486
  .ids-dialog .ids-dialog-container .ids-dialog-content {
5487
5487
  display: flex;
5488
- align-items: center;
5489
- justify-content: center;
5490
5488
  overflow-y: auto;
5491
5489
  background: var(--ids-comp-dialog-content-color-bg-default);
5492
5490
  }
@@ -11640,6 +11638,15 @@ a.ids-menu-item:link, a.ids-menu-item:visited {
11640
11638
  .ids-side-nav .ids-side-nav-item.ids-side-nav-item-expandable .ids-side-nav-item-expandable-submenu {
11641
11639
  display: flex;
11642
11640
  flex-direction: column;
11641
+ overflow: hidden;
11642
+ max-height: 0;
11643
+ opacity: 0;
11644
+ transition: all 300ms ease-out;
11645
+ }
11646
+ .ids-side-nav .ids-side-nav-item.ids-side-nav-item-expandable .ids-side-nav-item-expandable-submenu.expanded {
11647
+ max-height: 10000px;
11648
+ opacity: 1;
11649
+ transition: all 300ms ease-in;
11643
11650
  }
11644
11651
  .ids-side-nav .ids-side-nav-item.ids-side-nav-item-expandable .ids-side-nav-item-expandable-summary > button[idsIconButton] {
11645
11652
  margin-left: auto;