Repository: ambari Updated Branches: refs/heads/branch-2.4 482e15eae -> 08baa93a8
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/08baa93a Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/08baa93a Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/08baa93a Branch: refs/heads/branch-2.4 Commit: 08baa93a83f44d68729e21a864e15260d13ebb01 Parents: 482e15e Author: Alex Antonenko <[email protected]> Authored: Thu May 19 12:43:33 2016 +0300 Committer: Alex Antonenko <[email protected]> Committed: Thu May 19 12:55:57 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/08baa93a/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>
