Skip to content

Commit

Permalink
Fix broken layout of system formulas configuration page (#8919)
Browse files Browse the repository at this point in the history
  • Loading branch information
bisht-richa authored Jul 23, 2024
1 parent 99d5c0a commit c6473f7
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 1 deletion.
3 changes: 2 additions & 1 deletion java/code/src/com/suse/manager/webui/utils/ViewHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ public enum ViewHelper {
"/rhn/systems/details/kickstart/PowerManagement.do",
"/rhn/systems/ssm/provisioning/PowerManagementOperations.do",
"/rhn/channels/ChannelDetail.do",
"/rhn/software/packages/Details.do"
"/rhn/software/packages/Details.do",
"/rhn/manager/systems/details/formulas"
);

ViewHelper() { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,14 @@
border-bottom: none;
}
}

> .panel-body .list-group {
border: 1px solid $eos-bc-gray-100;

.list-group-item:hover {
background-color: $eos-bc-gray-100;
text-decoration: none;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@
border-bottom: none;
}
}

> .panel-body .list-group {
border: 1px solid $eos-bc-gray-100;

.list-group-item:hover {
background-color: $eos-bc-gray-50;
text-decoration: none;
}
}
}

.panel-footer {
Expand Down
1 change: 1 addition & 0 deletions web/html/src/core/spa/view-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const BOOTSTRAP_READY_PAGES: string[] = [
"/rhn/systems/ssm/provisioning/PowerManagementOperations.do",
"/rhn/channels/ChannelDetail.do",
"/rhn/software/packages/Details.do",
"/rhn/manager/systems/details/formulas",
];

export const onEndNavigate = () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed broken layout of system formulas configuration page

0 comments on commit c6473f7

Please sign in to comment.