Skip to content

Commit

Permalink
Fixed missing margin between inline radio buttons (#8976)
Browse files Browse the repository at this point in the history
  • Loading branch information
bisht-richa authored Jul 23, 2024
1 parent a1dffa5 commit b001501
Show file tree
Hide file tree
Showing 4 changed files with 8 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 @@ -92,7 +92,8 @@ public enum ViewHelper {
"/rhn/audit/scap/Search.do",
"/rhn/manager/schedule/recurring-actions",
"/rhn/manager/schedule/maintenance/calendars",
"/rhn/manager/multiorg/recurring-actions"
"/rhn/manager/multiorg/recurring-actions",
"/rhn/manager/schedule/maintenance/schedules"
);

ViewHelper() { }
Expand Down
4 changes: 4 additions & 0 deletions web/html/src/branding/css/base/forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ input[type="checkbox"] {
margin-bottom: 0;
}

.radio-inline {
margin-right: 20px;
}

.radio,
.checkbox {
min-height: 28px;
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 @@ -36,6 +36,7 @@ const BOOTSTRAP_READY_PAGES: string[] = [
"/rhn/manager/schedule/recurring-actions",
"/rhn/manager/schedule/maintenance/calendars",
"/rhn/manager/multiorg/recurring-actions",
"/rhn/manager/schedule/maintenance/schedules",
];

export const onEndNavigate = () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fixed missing margin between inline radio buttons

0 comments on commit b001501

Please sign in to comment.