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

Background for login page #2756

Merged
merged 8 commits into from
Feb 25, 2021
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Changed
- Refactored useFormValidation hook [#2704](https://github.com/greenbone/gsa/pull/2704)
- Updated copyright and footer layout [#2687](https://github.com/greenbone/gsa/pull/2687)
- New login page layout [#2683](https://github.com/greenbone/gsa/pull/2683), [#2736](https://github.com/greenbone/gsa/pull/2736)
- New login page layout
[#2683](https://github.com/greenbone/gsa/pull/2683),
[#2736](https://github.com/greenbone/gsa/pull/2736),
[#2756](https://github.com/greenbone/gsa/pull/2756)
- CVE Tables Page can now be used with the updated xml-format and CVSSv3(.1). [#2583](https://github.com/greenbone/gsa/pull/2583)
- The CVSS v2 BaseScore calculator calculates the score on the client side now. [#2536](https://github.com/greenbone/gsa/pull/2536)

Expand Down
3 changes: 3 additions & 0 deletions gsa/public/img/login-bottom.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion gsa/public/img/login-label.svg

This file was deleted.

3 changes: 3 additions & 0 deletions gsa/public/img/login-top.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ exports[`Footer tests should render footer with copyright 1`] = `
}

.c1:link {
color: #66c430;
color: #787878;
}

.c0 {
Expand Down
2 changes: 1 addition & 1 deletion gsa/src/web/components/structure/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import Theme from 'web/utils/theme';
const Link = styled.a`
color: ${Theme.mediumGray};
&:link {
color: ${Theme.green};
color: ${Theme.mediumGray};
}
`;

Expand Down
Loading