Skip to content

Commit 73df834

Browse files
authored
Merge branch 'develop' into snyk-fix-5657e5e618fba33bd1fdff2006f67cbd
2 parents e76d006 + 98c98e9 commit 73df834

12 files changed

Lines changed: 698 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [release-176] - 2026-03-31
4+
5+
- NRMI-258: GCA header and footer updates
6+
- NRMI-294: fix contrast issue on mobile
7+
- NRMI-319: fix sidekiq issue
8+
39
## [release-175] - 2026-03-23
410

511
- NRMI-278: address outdated container package
@@ -1164,6 +1170,7 @@ this should have been released in release 45 but wasn't actually merged
11641170

11651171
Initial release
11661172

1173+
[release-176]: https://github.com/Crown-Commercial-Service/DataSubmissionServiceAPI/compare/release-175...release-176
11671174
[release-175]: https://github.com/Crown-Commercial-Service/DataSubmissionServiceAPI/compare/release-174...release-175
11681175
[release-174]: https://github.com/Crown-Commercial-Service/DataSubmissionServiceAPI/compare/release-173...release-174
11691176
[release-173]: https://github.com/Crown-Commercial-Service/DataSubmissionServiceAPI/compare/release-172...release-173

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ gem 'net-http', '>= 0.4.0'
104104

105105
gem 'sprockets-rails', '>= 3.5.1'
106106

107+
gem 'connection_pool', '< 3'
108+
107109
group :development, :test do
108110
gem 'brakeman', require: false
109111
gem 'byebug', platforms: %i[mri mingw x64_mingw]

Gemfile.lock

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ GEM
151151
climate_control (0.2.0)
152152
coderay (1.1.3)
153153
concurrent-ruby (1.3.6)
154-
connection_pool (3.0.2)
154+
connection_pool (2.5.5)
155155
crack (1.0.0)
156156
bigdecimal
157157
rexml
@@ -643,6 +643,7 @@ DEPENDENCIES
643643
byebug
644644
capybara (~> 3.40, >= 3.40.0)
645645
climate_control
646+
connection_pool (< 3)
646647
csv (~> 3.3, >= 3.3.4)
647648
database_cleaner (~> 2.0, >= 2.0.2)
648649
dotenv-rails (>= 3.2.0)
79.6 KB
Loading

app/assets/images/GCA_vertical_black.svg

Lines changed: 665 additions & 0 deletions
Loading
85.2 KB
Loading

app/assets/stylesheets/_settings.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ $govuk-colours: (
2929
"dark-blue": #2b8cc4,
3030
"blue": #005ea5,
3131

32-
"primary": #9b1a47,
33-
"secondary": #016065,
32+
"primary": #8fb3ff,
33+
"secondary": #bcca46,
3434

3535
"black": #0b0c0c,
3636
"dark-grey": #6f777b,

app/assets/stylesheets/components/button/_button.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,16 @@
33
$govuk-button-colour: govuk-colour("secondary");
44
$govuk-button-hover-colour: darken($govuk-button-colour, 5%);
55
$govuk-button-shadow-colour: darken($govuk-button-colour, 15%);
6-
$govuk-button-text-colour: govuk-colour("white");
6+
$govuk-button-text-colour: govuk-colour("black");
77

88
$button-shadow-size: $govuk-border-width-form-element;
99

10+
11+
12+
.govuk-header__menu-button {
13+
color: $govuk-button-text-colour;
14+
}
15+
1016
.govuk-button {
1117
color: $govuk-button-text-colour;
1218
background-color: $govuk-button-colour;

app/assets/stylesheets/components/header/_header.scss

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,16 @@ $ccs-header-nav-item-border-color: darken(govuk-colour("primary"), 2);
1515
border-bottom: 0;
1616
}
1717

18+
.govuk-header__link{
19+
color: #000 !important;
20+
}
21+
1822
.govuk-header__navigation-item--active {
1923
a {
2024
&:link,
2125
&:hover,
2226
&:visited {
23-
color: govuk-colour("white");
27+
color: govuk-colour("black");
2428
text-decoration: underline;
2529
@include govuk-media-query($until: desktop) {
2630
text-decoration: none;
@@ -37,15 +41,15 @@ $ccs-header-nav-item-border-color: darken(govuk-colour("primary"), 2);
3741

3842
.govuk-header__link--homepage {
3943
display: block;
40-
width: 122px;
44+
width: 117px;
4145
height: 102px;
42-
background-image: govuk-image-url("vertical_logo.png");
46+
background-image: govuk-image-url("GCA_vertical_black.svg");
4347
background-repeat: no-repeat;
4448
background-size: cover;
4549
@include govuk-media-query($until: desktop) {
4650
width: auto;
4751
height: 32px;
48-
background-image: govuk-image-url("horizontal_logo.png");
52+
background-image: govuk-image-url("GCA_linear_logo.png");
4953
background-size: contain;
5054
}
5155
@include govuk-media-query($until: tablet) {

app/helpers/admin_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module AdminHelper
22
def support_email_address
3-
'report-mi@crowncommercial.gov.uk'
3+
'report-mi@gca.gov.uk'
44
end
55

66
def link_to_suppliers(suppliers)

0 commit comments

Comments
 (0)