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

[ES-1989] [ES-1665] i18n and theme changes. #1065

Merged
merged 1 commit into from
Dec 20, 2024
Merged
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
2 changes: 0 additions & 2 deletions oidc-ui/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,6 @@ function App() {
i18n.changeLanguage(window._env_.DEFAULT_LANG);
}
}
} else {
return i18n.changeLanguage(window._env_.DEFAULT_LANG);
}

//2. Check for cookie
Expand Down
22 changes: 15 additions & 7 deletions oidc-ui/src/common/ModalPopup.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,21 @@ const ModalPopup = ({
return (
<>
<img
className="top_left_bg_logo hidden md:block"
alt="top left background"
/>
<img
className="bottom_left_bg_logo hidden md:block"
alt="bottom left background"
/>
className="top_left_bg_logo hidden md:block"
alt="top left background"
/>
<img
className="bottom_left_bg_logo hidden md:block"
alt="bottom left background"
/>
<img
className="top_right_bg_logo hidden md:block"
alt="top right background"
/>
<img
className="bottom_right_bg_logo hidden md:block"
alt="bottom right background"
/>
<div
className="relative z-50"
aria-labelledby="modal-title"
Expand Down
22 changes: 15 additions & 7 deletions oidc-ui/src/components/ClaimDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,13 +274,21 @@ const ClaimDetails = ({
) : (
<>
<img
className="top_left_bg_logo hidden md:block"
alt="top left background"
/>
<img
className="bottom_left_bg_logo hidden md:block"
alt="bottom left background"
/>
className="top_left_bg_logo hidden md:block"
alt="top left background"
/>
<img
className="bottom_left_bg_logo hidden md:block"
alt="bottom left background"
/>
<img
className="top_right_bg_logo hidden md:block"
alt="top right background"
/>
<img
className="bottom_right_bg_logo hidden md:block"
alt="bottom right background"
/>
<div
className="relative z-50 consent-details"
aria-labelledby="modal-title"
Expand Down
Loading