Skip to content

Commit 2c79209

Browse files
Style new CNCF country fields (#866)
* Temporarily switch out forms so we can style them; revert this commit before deploy Signed-off-by: Chris Abraham <[email protected]> * Newsletter footer styling Signed-off-by: James Hunt <[email protected]> * Move check for Tech Radars data Signed-off-by: James Hunt <[email protected]> * Rebase on Main Signed-off-by: James Hunt <[email protected]> * Footer newsletter styling changes Signed-off-by: James Hunt <[email protected]> * Revert "Temporarily switch out forms so we can style them; revert this commit before deploy" This reverts commit dcd5f18. --------- Signed-off-by: Chris Abraham <[email protected]> Signed-off-by: James Hunt <[email protected]> Co-authored-by: James Hunt <[email protected]>
1 parent 36638bd commit 2c79209

File tree

4 files changed

+46
-27
lines changed

4 files changed

+46
-27
lines changed

web/wp-content/themes/cncf-twenty-two/components/header.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -160,10 +160,10 @@
160160
<?php
161161
// Get all radars.
162162
$tech_radars_all = LF_utils::get_tech_radars();
163-
// Limit to latest 3 items.
164-
$tech_radars = array_slice( $tech_radars_all, 0, 3 );
165163

166-
if ( is_array( $tech_radars ) ) :
164+
if ( is_array( $tech_radars_all ) ) :
165+
166+
$tech_radars = array_slice( $tech_radars_all, 0, 3 );
167167
?>
168168
<div class="columns-one">
169169
<?php

web/wp-content/themes/cncf-twenty-two/source/scss/components/_kubeweeklys.scss

+5-6
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@
3030
}
3131
}
3232

33-
// to stop hubspot form making box jump.
3433
.kubeweekly-newsletter {
35-
min-height: 359px;
36-
.hs-fieldtype-text {
37-
margin-bottom: 24px;
34+
min-height: 359px; // to stop hubspot form making box jump.
35+
form {
36+
display: flex;
37+
flex-direction: column;
38+
gap: 20px;
3839
}
3940

4041
.no-list {
@@ -55,8 +56,6 @@
5556
.legal-consent-container {
5657
p {
5758
font-size: var(--wp--preset--font-size--small);
58-
margin-bottom: 1rem;
59-
6059
}
6160
}
6261

web/wp-content/themes/cncf-twenty-two/source/scss/components/_newsletter.scss

+8-16
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,18 @@
5353
}
5454

5555
@media (min-width: 950px) {
56-
grid-template-columns: 1fr 1fr 1.75fr 1.2fr 1.2fr;
56+
grid-template-columns: 1fr 1fr 1.3fr;
5757
grid-row-gap: 1.5rem;
5858
grid-column-gap: 1.5rem;
5959
}
6060

61+
@media (min-width: 1000px) {
62+
max-width: 940px;
63+
}
64+
6165
input[type='text'],
6266
input[type='email'] {
63-
height: 60px;
67+
height: 50px;
6468
@media (min-width: 500px) {
6569
height: 42px;
6670
}
@@ -114,13 +118,13 @@
114118
border-radius: 0;
115119
box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0);
116120
display: block;
117-
height: 60px;
121+
height: 50px;
118122
@media (min-width: 500px) {
119123
height: 42px;
120124
}
121125
margin: 0;
122126
max-width: 100%;
123-
padding: 0.5em 0 calc(0.5em + 1px) 0;
127+
padding: 0.25em 0 calc(0.25em + 1px) 5px;
124128
transition: all 0.25s ease;
125129
width: 100%;
126130
color: $white;
@@ -192,15 +196,3 @@
192196
max-width: none;
193197
}
194198
}
195-
196-
// success formating for all forms (Kubeweekly and Contact)
197-
// success message.
198-
.submitted-message {
199-
padding: 20px;
200-
text-align: center;
201-
border: 2px solid $black;
202-
font-weight: 700;
203-
font-size: 18px;
204-
line-height: 24px;
205-
max-width: 100%;
206-
}

web/wp-content/themes/cncf-twenty-two/source/scss/core/_forms.scss

+30-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,30 @@
11
input[type='text'],
22
input[type='email'],
3-
input[type='search'] {
3+
input[type='search'],
4+
select {
45
height: 50px;
56
width: 100%;
67
border-radius: 3px;
78
-webkit-appearance: none;
89
// makes border lighter.
910
border: 1px solid $gray-500;
1011
padding-left: 5px;
12+
&::placeholder {
13+
color: $black;
14+
}
15+
&:focus {
16+
&::placeholder {
17+
transition: color 0.2s ease;
18+
color: #747474;
19+
}
20+
}
21+
}
22+
23+
select {
24+
option {
25+
font-weight: normal;
26+
color: $black;
27+
}
1128
}
1229

1330
// Controls autocomplete styles.
@@ -43,4 +60,15 @@ input[type='search']::-webkit-search-cancel-button {
4360
// If page title is turned off then move password form down the page.
4461
.page-template-no-page-title form.post-password-form {
4562
margin-top: 80px;
46-
}
63+
}
64+
65+
// success formatting for all forms (Kubeweekly and Contact).
66+
.submitted-message {
67+
padding: 20px;
68+
text-align: center;
69+
border: 2px solid $black;
70+
font-weight: 700;
71+
font-size: 18px;
72+
line-height: 24px;
73+
max-width: 100%;
74+
}

0 commit comments

Comments
 (0)