Alarm Status Table in Perspective

Team,
As per requirement, I need to move the Shelve and Acknowledge Button from right most corner to left side.
I dint find any property of Alarm Status Table, which can help to move these buttons.
Can you please guide on that, how can we achieve this if it is possible.

Fairy certain it is not possible within the Designer, but CSS might do it, see this post for inspiration...

The following two changes placed at the top of your themes/light/common/alarm-table.css file should work:

[data-component="ia.display.alarmstatustable"] .alarmTableFoot: {
    justify-content: flex-start
}
[data-component="ia.display.alarmstatustable"] .alarmTableFoot button: {
    margin: 10px 10px 10px 10px
}

The second piece is needed due to the default margin of the buttons expecting a flex-end setting.

2 Likes