diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps')
2 files changed, 10 insertions, 10 deletions
diff --git a/server/sonar-web/src/main/js/apps/permission-templates/components/PermissionCell.js b/server/sonar-web/src/main/js/apps/permission-templates/components/PermissionCell.js index c6410f99c13..1440052707c 100644 --- a/server/sonar-web/src/main/js/apps/permission-templates/components/PermissionCell.js +++ b/server/sonar-web/src/main/js/apps/permission-templates/components/PermissionCell.js @@ -84,7 +84,7 @@ export default class PermissionCell extends React.Component { {p.withProjectCreator && ( <div className="spacer-top"> - <span className="badge badge-focus js-project-creators" + <span className="js-project-creators" title={translate('permission_templates.project_creators.explanation')} data-toggle="tooltip"> {translate('permission_templates.project_creators')} diff --git a/server/sonar-web/src/main/js/apps/permission-templates/templates/permission-templates-users.hbs b/server/sonar-web/src/main/js/apps/permission-templates/templates/permission-templates-users.hbs index 09130d183c6..dcd5c51ff23 100644 --- a/server/sonar-web/src/main/js/apps/permission-templates/templates/permission-templates-users.hbs +++ b/server/sonar-web/src/main/js/apps/permission-templates/templates/permission-templates-users.hbs @@ -5,15 +5,15 @@ <div class="modal-body"> <div class="js-modal-messages"></div> - <div class=" big-spacer-bottom"> - <div class="alert alert-warning"> - <input id="grant-to-project-creators" type="checkbox" - {{#if permission.withProjectCreator}}checked{{/if}}/> - <label for="grant-to-project-creators"> - {{tp 'permission_templates.grant_permission_to_project_creators' permission.name}} - </label> - <i class="icon-help little-spacer-left" title="{{t 'permission_templates.project_creators.explanation'}}" data-toggle="tooltip"/> - </div> + <div class="big-spacer-bottom panel panel-vertical"> + <input id="grant-to-project-creators" + class="little-spacer-right" + type="checkbox" + {{#if permission.withProjectCreator}}checked{{/if}}/> + <label for="grant-to-project-creators"> + {{tp 'permission_templates.grant_permission_to_project_creators' permission.name}} + </label> + <i class="icon-help little-spacer-left" title="{{t 'permission_templates.project_creators.explanation'}}" data-toggle="tooltip"/> </div> <div id="permission-templates-users"></div> |