Skip to content

Commit

Permalink
Added height variable in scss file
Browse files Browse the repository at this point in the history
  • Loading branch information
bisht-richa authored and admd committed May 23, 2024
1 parent 6b29c1d commit 5139321
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
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 @@ -67,7 +67,8 @@ public enum ViewHelper {
"/rhn/account/Addresses.do",
"/rhn/account/EditAddress.do",
"/rhn/multiorg/OrgConfigDetails.do",
"/rhn/manager/notification-messages"
"/rhn/manager/notification-messages",
"rhn/channels/software/Search.do"
);

ViewHelper() { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,14 +178,18 @@
.input-group-btn .btn {
border-width: 1px;
padding: 6px 12px;
height: 35px;
height: $input-height;
z-index: 100;

&:not(:disabled):not(.disabled):not(.text-muted):hover::after {
border-width: 1px;
bottom: -1px;
left: -1px;
}

&:last-child {
margin-left: -1px;
}
}

.btn-group .btn {
Expand Down
2 changes: 1 addition & 1 deletion web/html/src/branding/css/susemanager/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

@import "./components/titles.scss";
@import "./components/alerts.scss";
@import "./components/buttons.scss";
@import "./components/inputs.scss";
@import "./components/buttons.scss";
@import "./components/modal.scss";
@import "./components/nav.scss";
@import "./components/panels.scss";
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 @@ -12,6 +12,7 @@ const BOOTSTRAP_READY_PAGES: string[] = [
"/rhn/account/EditAddress.do",
"/rhn/multiorg/OrgConfigDetails.do",
"/rhn/manager/notification-messages",
"rhn/channels/software/Search.do",
];

export const onEndNavigate = () => {
Expand Down

0 comments on commit 5139321

Please sign in to comment.