Show the login roles that are members of a group role be shown when examining a group role. Fixes #5404

This commit is contained in:
Nikhil Mohite
2021-03-12 13:11:09 +05:30
committed by Akshay Joshi
parent 68132e2a8f
commit 7bad4ca535
13 changed files with 209 additions and 15 deletions
@@ -117,7 +117,8 @@ select[readonly].select2-hidden-accessible + .select2-container {
}
select[readonly].select2-hidden-accessible + .select2-container .select2-selection {
background: #eee;
background: $select2-readonly;
color: $text-muted;
box-shadow: none;
}
@@ -369,3 +369,5 @@ $erd-link-selected-color: $color-fg !default;
@return '%23' + str-slice('#{$colour}', 2, -1)
}
$erd-bg-grid: url("data:image/svg+xml, %3Csvg width='100%25' viewBox='0 0 45 45' style='background-color:#{url-friendly-colour($erd-canvas-bg)}' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='smallGrid' width='15' height='15' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 15 0 L 0 0 0 15' fill='none' stroke='#{url-friendly-colour($erd-canvas-grid)}' stroke-width='0.5'/%3E%3C/pattern%3E%3Cpattern id='grid' width='45' height='45' patternUnits='userSpaceOnUse'%3E%3Crect width='100' height='100' fill='url(%23smallGrid)'/%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='#{url-friendly-colour($erd-canvas-grid)}' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)' /%3E%3C/svg%3E%0A");
$select2-readonly: $color-gray-lighter !default;
@@ -134,3 +134,5 @@ $erd-canvas-bg: $color-gray-light;
$erd-canvas-grid: #444952;
$erd-link-color: $color-fg;
$erd-link-selected-color: $color-fg;
$select2-readonly: $color-bg;
@@ -205,3 +205,5 @@ $span-text-color: #9D9FA1 !default;
$span-text-color-hover: $black !default;
$quick-search-a-text-color: $black !default;
$quick-search-info-icon: #8A8A8A !default;
$select2-readonly: $color-gray;