Skip to content

Commit

Permalink
Merge c92bdae into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ibmdotcom-bot authored Jan 25, 2023
2 parents 22414a1 + c92bdae commit 5db06f2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright IBM Corp. 2019, 2022
// Copyright IBM Corp. 2019, 2023
//
// This source code is licensed under the Apache-2.0 license found in the
// LICENSE file in the root directory of this source tree.
Expand All @@ -17,6 +17,13 @@ $css--plex: true !default;

:host(#{$prefix}-breadcrumb-item) {
@extend .#{$prefix}--breadcrumb-item;

// TODO: see if we can remove this ::after section after v11 upgrade
&::after {
margin-left: $spacing-03;
color: $text-primary;
content: '/';
}
}

:host(#{$prefix}-breadcrumb-overflow-menu) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright IBM Corp. 2019, 2022
// Copyright IBM Corp. 2019, 2023
//
// This source code is licensed under the Apache-2.0 license found in the
// LICENSE file in the root directory of this source tree.
Expand Down Expand Up @@ -74,6 +74,10 @@

:host(#{$prefix}-modal[open]) {
@extend .#{$prefix}--modal, .is-visible;

// TODO: look into if following two lines are necessary after v11 upgrade
opacity: 1;
visibility: inherit;
}

:host(#{$prefix}-modal-header) {
Expand Down

0 comments on commit 5db06f2

Please sign in to comment.