Skip to content

Commit

Permalink
Fixed space between radio button and label
Browse files Browse the repository at this point in the history
  • Loading branch information
bisht-richa committed Jul 2, 2024
1 parent 0633dc9 commit 4a24e4b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.
5 changes: 4 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 @@ -68,7 +68,10 @@ public enum ViewHelper {
"/rhn/account/EditAddress.do",
"/rhn/multiorg/OrgConfigDetails.do",
"/rhn/manager/notification-messages",
"rhn/channels/software/Search.do"
"rhn/channels/software/Search.do",
"/rhn/systems/details/SystemRemoteCommand.do",
"/rhn/manager/systems/details/highstate",
"/rhn/manager/systems/details/recurring-actions"
);

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

input[type="radio"] {
margin-right: 5px;
}
}

.text {
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 @@ -38,6 +38,10 @@ input[type="checkbox"] {
padding-top: 8px;
margin-bottom: 0;
text-align: right;

input[type="radio"] {
margin-right: 5px;
}
}

.text {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@
align-items: center;
}

.radio {
padding-left: 5px;
}

.helpIcon {
padding: 0px;
}
Expand Down
3 changes: 3 additions & 0 deletions web/html/src/core/spa/view-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ const BOOTSTRAP_READY_PAGES: string[] = [
"/rhn/multiorg/OrgConfigDetails.do",
"/rhn/manager/notification-messages",
"rhn/channels/software/Search.do",
"/rhn/systems/details/SystemRemoteCommand.do",
"/rhn/manager/systems/details/highstate",
"/rhn/manager/systems/details/recurring-actions",
];

export const onEndNavigate = () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fixed space between radio button and label in forms

0 comments on commit 4a24e4b

Please sign in to comment.