From: Tiago Melo Date: Mon, 11 Feb 2019 15:08:25 +0000 (+0000) Subject: mgr/dashboard: Fix order of table buttons X-Git-Tag: v14.1.0~153^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=406cd5081d9e515cc4fe25be71c2ed1566caa348;p=ceph-ci.git mgr/dashboard: Fix order of table buttons "float:none" is changing the order of the table buttons. By reverting this change and setting .oadatatableactions to "float:left", we get the same result as intended before. Signed-off-by: Tiago Melo --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/datatable/table/table.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/shared/datatable/table/table.component.scss index 6ee3997ebf8..a2259c8278c 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/datatable/table/table.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/datatable/table/table.component.scss @@ -56,7 +56,7 @@ padding: 5px; position: relative; .oadatatableactions { - display: inline-block; + float: left; } ::ng-deep .table-filters { float: right; diff --git a/src/pybind/mgr/dashboard/frontend/src/styles.scss b/src/pybind/mgr/dashboard/frontend/src/styles.scss index 12330538eef..35bed38858d 100644 --- a/src/pybind/mgr/dashboard/frontend/src/styles.scss +++ b/src/pybind/mgr/dashboard/frontend/src/styles.scss @@ -155,9 +155,6 @@ button.btn.btn-label > i.fa { /** Add space between icon and text */ padding-right: 5px; } -.btn-toolbar .btn-group { - float: none; -} /* Dropdown */ .dropdown-menu {