Repository: ambari Updated Branches: refs/heads/trunk 6672b74f9 -> 347fd2fac
AMBARI-16404. View display name spills to next line for HUETOAMBARI_MIGRATION (alexantonenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/347fd2fa Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/347fd2fa Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/347fd2fa Branch: refs/heads/trunk Commit: 347fd2fac574f98974c60321ce81af2cd81acb4a Parents: 4440db3 Author: Alex Antonenko <[email protected]> Authored: Thu May 19 12:43:33 2016 +0300 Committer: Alex Antonenko <[email protected]> Committed: Thu May 19 12:43:52 2016 +0300 ---------------------------------------------------------------------- .../ui/admin-web/app/views/ambariViews/listTable.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/347fd2fa/ambari-admin/src/main/resources/ui/admin-web/app/views/ambariViews/listTable.html ---------------------------------------------------------------------- diff --git a/ambari-admin/src/main/resources/ui/admin-web/app/views/ambariViews/listTable.html b/ambari-admin/src/main/resources/ui/admin-web/app/views/ambariViews/listTable.html index 906eef5..2481d59 100644 --- a/ambari-admin/src/main/resources/ui/admin-web/app/views/ambariViews/listTable.html +++ b/ambari-admin/src/main/resources/ui/admin-web/app/views/ambariViews/listTable.html @@ -45,7 +45,7 @@ <accordion-group ng-repeat="view in filteredViews" is-open="view.isOpened"> <accordion-heading> <div class="row"> - <div class="col-sm-3"> + <div class="col-sm-4"> <i class="glyphicon glyphicon-chevron-right" ng-class="{'opened': view.isOpened}"></i> {{view.view_name}} </div> @@ -82,8 +82,8 @@ </tbody> <tfoot> <tr> - <td class="col-sm-3"></td> - <td class="col-sm-3"> + <td class="col-sm-4"></td> + <td class="col-sm-3 padding-left-30"> <a tooltip="{{view.canCreateInstance ? '' : constants.unable}}" class="btn btn-default createisntance-btn {{view.canCreateInstance ? '' : 'disabled'}}" href ng-click="gotoCreate(view.view_name, view.canCreateInstance);"><span class="glyphicon glyphicon-plus"></span> {{'views.create' | translate}}</a> </td> <td class="col-sm-3"></td>
