diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-06-17 18:14:19 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-06-17 18:14:19 +0200 |
commit | 2b6ed205a3478ecb0006d613b9019a264a5854cc (patch) | |
tree | b9f130c5d4ed8e2b44320bf093ddd5e3a4649331 /server/sonar-web/src/main/js/apps | |
parent | a05bbc4d7ef148719be97481185ccf23c8292b94 (diff) | |
download | sonarqube-2b6ed205a3478ecb0006d613b9019a264a5854cc.tar.gz sonarqube-2b6ed205a3478ecb0006d613b9019a264a5854cc.zip |
SONAR-7720 apply feedback
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> |