From: Nizamudeen A Date: Tue, 16 Nov 2021 14:43:09 +0000 (+0530) Subject: mgr/dashboard: Daemon Events listing using bootstrap class X-Git-Tag: v16.2.7~9^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0d67fe4858c38678996dad21fe28fb84eea6eeb8;p=ceph.git mgr/dashboard: Daemon Events listing using bootstrap class Fixes: https://tracker.ceph.com/issues/53282 Signed-off-by: Nizamudeen A (cherry picked from commit 1bad306efd628dd4940b1082c08199bbbaf0b581) --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html index 5a8116d5a288..3aeb04eade7a 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html @@ -57,23 +57,26 @@ -
- No data available -
-
-
    -
  • {{ event.created | relativeDate }} - +
      +
    • + {{ event.created | relativeDate }} - {{ event.subject }}
      - + - + - {{ event.message }}
    • -
    -
+ {{ event.message }} + + + +
+ No data available +
+
diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.scss index c9a361d32961..a0d91c704479 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.scss @@ -8,6 +8,7 @@ color: vv.$danger; } -.ul-margin { - margin-left: -30px; +.list-group-item { + background-color: transparent; + border-width: 0; }