diff --git a/forms/common-themes/src/main/resources/theme/base/admin/resources/js/app.js b/forms/common-themes/src/main/resources/theme/base/admin/resources/js/app.js index f26a8edb319..5ddf659deb2 100755 --- a/forms/common-themes/src/main/resources/theme/base/admin/resources/js/app.js +++ b/forms/common-themes/src/main/resources/theme/base/admin/resources/js/app.js @@ -1842,4 +1842,20 @@ module.directive('kcTooltip', function($compile) { $compile(label)(scope); } }; +}); + +module.directive( 'kcOpen', function ( $location ) { + return function ( scope, element, attrs ) { + var path; + + attrs.$observe( 'kcOpen', function (val) { + path = val; + }); + + element.bind( 'click', function () { + scope.$apply( function () { + $location.path(path); + }); + }); + }; }); \ No newline at end of file diff --git a/forms/common-themes/src/main/resources/theme/base/admin/resources/partials/client-list.html b/forms/common-themes/src/main/resources/theme/base/admin/resources/partials/client-list.html index b317a70da8e..9c1cb149c32 100755 --- a/forms/common-themes/src/main/resources/theme/base/admin/resources/partials/client-list.html +++ b/forms/common-themes/src/main/resources/theme/base/admin/resources/partials/client-list.html @@ -41,7 +41,7 @@ Not defined
| + | @@ -20,6 +20,7 @@ | Role Name | Composite | Description | +Actions | {{role.name}} | {{role.composite}} | {{role.description}} | ++ + | |
|---|---|---|---|---|---|---|---|---|---|---|
| No client roles available | diff --git a/forms/common-themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider.html b/forms/common-themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider.html index f0843474748..8c817bc4332 100755 --- a/forms/common-themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider.html +++ b/forms/common-themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider.html @@ -35,7 +35,7 @@{{identityProvider.enabled}} | {{identityProvider.config.guiOrder}} | - Edit + | {{role.composite}} | {{role.description}} | - Edit + | ||||
| {{instance.providerName|capitalize}} | {{instance.priority}} | - Edit + | ||||||||
| {{user.firstName}} | {{user.email}} | - Edit + | diff --git a/forms/common-themes/src/main/resources/theme/keycloak/admin/resources/css/styles.css b/forms/common-themes/src/main/resources/theme/keycloak/admin/resources/css/styles.css index 9bf8af23361..83f09293f11 100644 --- a/forms/common-themes/src/main/resources/theme/keycloak/admin/resources/css/styles.css +++ b/forms/common-themes/src/main/resources/theme/keycloak/admin/resources/css/styles.css @@ -312,8 +312,4 @@ h1 i { left: 0; right: 0; bottom: 0; -} - -.kc-action-cell a { - padding-top: 4px; } \ No newline at end of file | |||||||