-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
fix: legal footer on public page #55415
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
Conversation
|
/backport to stable32 |
core/css/public.scss
Outdated
| height: var(--default-line-height); | ||
| color: var(--color-text-maxcontrast); | ||
| white-space: nowrap; | ||
| display: inline-block; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
going by the other blocks I think there is one indentation too many
core/css/public.scss
Outdated
| bottom: var(--body-container-margin); | ||
| background-color: var(--color-main-background); | ||
| transform: translateX(-50%); | ||
| background-color: rgba( var(--color-main-background-rgb, 255,255,255), 0.85 ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| background-color: rgba( var(--color-main-background-rgb, 255,255,255), 0.85 ); | |
| background-color: rgba( var(--color-main-background-rgb, 255, 255, 255), 0.85 ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The RGB variants are discouraged. Also for consistency with the footer in other places it should be the same as .guestbox in guests.scss:
--color-text-maxcontrast: var(--color-text-maxcontrast-background-blur, var(--color-main-text));
color: var(--color-main-text);
background-color: var(--color-main-background-blur);
-webkit-backdrop-filter: var(--filter-background-blur);
backdrop-filter: var(--filter-background-blur);There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@susnux How is this now?
8066fde to
6569424
Compare
Signed-off-by: SebastianKrupinski <[email protected]>
6569424 to
162ebfa
Compare

Summary
Checklist
3. to review, feature component)stable32)