Skip to content

Commit 4fcee28

Browse files
committed
Merge main & update to bikkelhart/internet-nl@7cb9a8d5
git fetch bikkelhart git merge -X theirs internetnl/main git checkout --no-overlay bikkelhart/bikkelhart-redesign -- frontend interface/templates interface/static translations git checkout --no-overlay main -- interface/static/question@internet.nl_0x45028563.asc convert -resize 48x48 interface/static/favicon.{png,ico} git add interface/static/favicon.ico git commit --amend -m "Merge main & update to bikkelhart/internet-nl@$(git rev-parse bikkelhart/bikkelhart-redesign | cut -c1-8)"
2 parents db3be51 + 905422a commit 4fcee28

File tree

30 files changed

+166
-129
lines changed

30 files changed

+166
-129
lines changed

Changelog.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,13 @@ _Compared to the latest 1.10 release._
2020

2121
- ...
2222

23-
## 1.10.1 (in progress)
23+
## 1.10.2
24+
25+
- Added missing [CAA fields to API](https://github.com/internetstandards/Internet.nl/pull/1801).
26+
27+
The API version is updated to 2.6.0 due to the new CAA fields.
28+
29+
## 1.10.1
2430

2531
- Fixed handling for [CAA with non-ascii characters](https://github.com/internetstandards/Internet.nl/pull/1788).
2632
- Fixed possible exception in [mail test prechecks](https://github.com/internetstandards/Internet.nl/pull/1787).

docker/util.Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ RUN apk add --no-cache curl postgresql15 python3 py3-prometheus-client py3-reque
55
# install cron tasks
66
COPY docker/cron/periodic /etc/periodic/
77

8+
# add 5min to crontab
9+
RUN echo "*/5 * * * * run-parts /etc/periodic/5min" >> /etc/crontabs/root
10+
811
# create separate periodic config for cron-docker service
912
RUN cp -r /etc/crontabs /etc/crontabs-docker
1013
RUN sed -i 's/periodic/periodic-docker/' /etc/crontabs-docker/root

frontend/package-lock.json

Lines changed: 20 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@
1212
"@rollup/plugin-terser": "^0.4.4",
1313
"autoprefixer": "^10.4.20",
1414
"concurrently": "^8.2.2",
15-
"cssnano": "^7.0.6",
15+
"cssnano": "^7.0.7",
1616
"glob": "^11.0.2",
17-
"postcss": "^8.5.3",
17+
"postcss": "^8.5.5",
1818
"postcss-import": "^16.1.0",
1919
"postcss-preset-env": "^10.1.4",
20+
"postcss-variable-compress": "^3.0.0",
2021
"rollup": "^4.40.2",
2122
"rollup-plugin-postcss": "^4.0.2",
2223
"stylelint": "^16.14.1",

frontend/postcss.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
export default {
22
plugins: {
33
"postcss-import": {},
4-
"@csstools/postcss-cascade-layers": {},
4+
"@csstools/postcss-cascade-layers": {
5+
onImportLayerRule: "warn",
6+
},
57
autoprefixer: {},
68
"postcss-preset-env": {
79
features: {},
810
},
911
cssnano: {
1012
preset: "default",
1113
},
14+
"postcss-variable-compress": {},
1215
},
1316
};

frontend/rollup.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ const chunks = {
3535
"src/js/base/header.js",
3636
"src/js/base/theme.js",
3737
"src/js/base/language-switch.js",
38-
"src/js/base/detect-browser-font-size.js",
3938
"src/js/base/print.js",
4039
"src/js/lib/matomo.js",
4140
],

frontend/src/css/knowledge-section.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,10 @@
204204
& button {
205205
height: 100%;
206206
width: 100%;
207+
208+
&:not(.active) {
209+
padding: 0.75rem;
210+
}
207211
}
208212
}
209213

frontend/src/css/result-section.css

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,7 @@
4949

5050
a {
5151
display: inline;
52-
53-
&:hover {
54-
text-decoration: underline;
55-
}
52+
text-decoration: underline;
5653
}
5754

5855
&.probing::before {
@@ -119,6 +116,11 @@
119116
background-color: var(--error-color);
120117
}
121118

119+
&.info::before {
120+
mask-image: url("/static/icons/info.svg");
121+
background-color: var(--info-color);
122+
}
123+
122124
&.hidethis {
123125
display: none;
124126
}

frontend/src/css/test-section.css

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,12 @@
8686
}
8787

8888
form {
89-
display: flex;
90-
flex-direction: column;
91-
width: 100%;
89+
display: grid;
9290

9391
@media (width >= 56.25rem) {
94-
flex-direction: row;
95-
gap: 1.5rem;
92+
column-gap: 1.5rem;
93+
row-gap: 0.5rem;
94+
grid-template-columns: repeat(2, 1fr);
9695
}
9796
}
9897

@@ -105,8 +104,8 @@
105104
padding-bottom: 1rem;
106105

107106
@media (width >= 56.25rem) {
108-
width: 50%;
109107
padding-bottom: 0;
108+
grid-column: 1 / 2;
110109
}
111110
}
112111

@@ -120,17 +119,28 @@
120119
min-height: 3.25rem;
121120

122121
&::placeholder {
123-
color: var(--card-body-color-test);
122+
color: var(--placeholder-color);
123+
opacity: 1;
124124
}
125125
}
126126

127127
button {
128128
padding: 0.625rem 1rem;
129129

130130
@media (width >= 56.25rem) {
131-
width: 50%;
132131
align-self: end;
133-
height: fit-content;
132+
grid-column: 2 / 3;
133+
grid-row: 1 / 2;
134+
}
135+
}
136+
137+
.invalid-domain {
138+
color: var(--warning-color);
139+
font: var(--card-body-m);
140+
padding-bottom: 1rem;
141+
142+
@media (width >= 56.25rem) {
143+
padding-block: 0.5rem 0;
134144
}
135145
}
136146

@@ -200,6 +210,10 @@
200210
}
201211

202212
&.connection-variant {
213+
form {
214+
display: flex;
215+
}
216+
203217
.button-container {
204218
width: auto;
205219
}

0 commit comments

Comments
 (0)