-
Notifications
You must be signed in to change notification settings - Fork 885
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[navigation-next] Add CollapsibleNavGroupEnabled component into chrom…
…e_service.(#7093) Signed-off-by: SuZhou-Joe <suzhou@amazon.com>
- Loading branch information
1 parent
afd2e97
commit ac790af
Showing
7 changed files
with
552 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
src/core/public/chrome/ui/header/__snapshots__/header.test.tsx.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
src/core/public/chrome/ui/header/collapsible_nav_group_enabled.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
.context-nav-wrapper { | ||
background-color: $ouiCollapsibleNavBackgroundColor; | ||
|
||
.full-width { | ||
width: 100%; | ||
} | ||
|
||
.no-padding { | ||
padding: 0; | ||
} | ||
|
||
.no-hover { | ||
&:hover { | ||
text-decoration: none; | ||
} | ||
} | ||
|
||
.wrapper { | ||
overflow-y: auto; | ||
} | ||
|
||
.second-navigation { | ||
border-left: $euiBorderThin; | ||
} | ||
|
||
.padding-horizontal { | ||
padding-left: $ouiSize; | ||
} | ||
|
||
.no-margin-top { | ||
margin-top: $ouiSize / 4; | ||
} | ||
} |
Oops, something went wrong.