-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ACL): separate dialog for 'Edit inheritance' [YTFRONT-3836]
Uncaught Error: A state mutation was detected between dispatches, in the path 'acl.path.objectPermissions.0.permissions.0'. This may cause incorrect behavior. (https://redux.js.org/style-guide/style-guide#do-not-mutate-state)
- Loading branch information
1 parent
4aa0f39
commit 83d5965
Showing
13 changed files
with
293 additions
and
71 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
31 changes: 31 additions & 0 deletions
31
packages/ui/src/ui/containers/ACL/ManageInheritance/ManageInheritance.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,31 @@ | ||
.acl-inheritance { | ||
&__modal { | ||
.g-dialog-body { | ||
.g-dialog-body { | ||
padding: 0; | ||
} | ||
} | ||
|
||
&_loading, | ||
&_error { | ||
.g-dialog-body { | ||
min-height: 270px; | ||
|
||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
} | ||
|
||
&_error { | ||
.g-dialog-body { | ||
display: block; | ||
} | ||
} | ||
} | ||
|
||
&__flag { | ||
font-weight: var(--yt-font-weight-bold); | ||
color: var(--secondary-text); | ||
} | ||
} |
Oops, something went wrong.