This repository has been archived by the owner on May 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Role management * Misc fixes
- Loading branch information
Showing
27 changed files
with
2,526 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
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
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
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
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
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
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 @@ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Bentley Systems, Incorporated. All rights reserved. | ||
* See LICENSE.md in the project root for license terms and full copyright notice. | ||
* | ||
* This code is for demonstration purposes and should not be considered production ready. | ||
*--------------------------------------------------------------------------------------------*/ | ||
.idp-scrolling-role-base { | ||
display: flex; | ||
flex-direction: column; | ||
overflow: hidden; | ||
max-height: 100%; | ||
|
||
> div { | ||
display: flex; | ||
flex-direction: column; | ||
overflow: hidden; | ||
|
||
> .idp-role-base { | ||
overflow: hidden; | ||
padding: 0; | ||
|
||
> div:first-child { | ||
display: flex; | ||
flex-direction: column; | ||
overflow: hidden; | ||
|
||
> div:nth-child(2) { | ||
overflow: scroll; | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.