Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Migrate systems lists #8858

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ 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/manager/systems/list/all",
"/rhn/ssm/index.do",
"/rhn/ssm/Packages.do",
"/rhn/manager/systems/bootstrap"
);

ViewHelper() { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ button.is-plain {
&.disabled {
border-color: transparent;
text-decoration: none;
background: transparent;

&,
&:hover {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ button.is-plain {
&.disabled {
border-color: transparent;
text-decoration: none;
background: transparent;

&,
&:hover {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ th {
a {
border: none;
padding: 0;
font-weight: bold;
color: @eos-bc-gray-1000;
font-weight: bold !important;
color: @eos-bc-gray-1000 !important;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ th {
a {
border: none;
padding: 0;
font-weight: bold;
color: $eos-bc-gray-1000;
font-weight: bold !important;
color: $eos-bc-gray-1000 !important;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
}

.panel-footer {
border-top: 1px solid $eos-bc-gray-100;
padding: 10px 15px;
background: transparent !important;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
}

.panel-footer {
border-top: 1px solid $eos-bc-gray-100;
background: #f5f5f5 !important;
}
}
4 changes: 4 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,10 @@ const BOOTSTRAP_READY_PAGES: string[] = [
"/rhn/multiorg/OrgConfigDetails.do",
"/rhn/manager/notification-messages",
"rhn/channels/software/Search.do",
"/rhn/manager/systems/list/all",
"/rhn/ssm/index.do",
"/rhn/ssm/Packages.do",
"/rhn/manager/systems/bootstrap",
];

export const onEndNavigate = () => {
Expand Down
Loading