@ministryofjustice/hmpps-digital-prison-reporting-frontend 3.7.5 → 3.7.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dpr/all.scss +455 -436
- package/dpr/assets/css/all.css +1 -1
- package/dpr/assets/js/all.mjs +4 -3
- package/dpr/components/accordion/view.njk +1 -1
- package/dpr/components/autocomplete-text-input/view.njk +1 -1
- package/dpr/components/card-group/view.njk +1 -1
- package/dpr/components/date-range/view.njk +1 -1
- package/dpr/components/dropdown-button/view.njk +1 -1
- package/dpr/components/filters/view.njk +1 -1
- package/dpr/components/loading-anim/view.njk +1 -1
- package/package.json +1 -1
- package/package.zip +0 -0
package/dpr/all.scss
CHANGED
|
@@ -5,143 +5,147 @@ $govuk-assets-path: "/assets/govuk/";
|
|
|
5
5
|
|
|
6
6
|
@import 'govuk/all';
|
|
7
7
|
|
|
8
|
-
.accordion-section {
|
|
8
|
+
.dpr-accordion-section {
|
|
9
9
|
margin-bottom: govuk-spacing(6);
|
|
10
10
|
position: relative;
|
|
11
|
-
}
|
|
12
11
|
|
|
13
|
-
.accordion-section-row {
|
|
14
|
-
|
|
15
|
-
}
|
|
12
|
+
.accordion-section-row {
|
|
13
|
+
position: relative;
|
|
14
|
+
}
|
|
16
15
|
|
|
17
|
-
.accordion-section-button {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
16
|
+
.accordion-section-button {
|
|
17
|
+
min-width: 130px;
|
|
18
|
+
padding-right: govuk-spacing(3);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.accordion-details.disabled {
|
|
22
|
+
pointer-events: none;
|
|
21
23
|
|
|
22
|
-
.
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
opacity: .5
|
|
24
|
+
.govuk-details__summary-text, .govuk-details__summary:before {
|
|
25
|
+
opacity: .5
|
|
26
|
+
}
|
|
26
27
|
}
|
|
27
|
-
}
|
|
28
28
|
|
|
29
|
-
.accordion-details {
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
.accordion-details {
|
|
30
|
+
padding-top: govuk-spacing(2);
|
|
31
|
+
padding-bottom: govuk-spacing(1);
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
33
|
+
.govuk-details__text {
|
|
34
|
+
border-left: none;
|
|
35
|
+
border-bottom: 1px Solid govuk-colour("mid-grey");
|
|
36
|
+
padding: 15px 0;
|
|
37
|
+
}
|
|
37
38
|
}
|
|
38
|
-
}
|
|
39
39
|
|
|
40
|
-
.accordion-section-header {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
40
|
+
.accordion-section-header {
|
|
41
|
+
position: absolute;
|
|
42
|
+
width: calc(100% - 120px);
|
|
43
|
+
left: 120px;
|
|
44
|
+
top: 1px;
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
@media(max-width: 640px) {
|
|
47
47
|
top: -1px;
|
|
48
|
+
}
|
|
48
49
|
}
|
|
49
|
-
}
|
|
50
50
|
|
|
51
|
-
.accordion-section-header-scroll {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
}
|
|
51
|
+
.accordion-section-header-scroll {
|
|
52
|
+
width: auto;
|
|
53
|
+
position: relative;
|
|
54
|
+
overflow-x: scroll;
|
|
55
|
+
overflow-y: hidden;
|
|
56
|
+
white-space: nowrap;
|
|
57
|
+
}
|
|
58
58
|
|
|
59
|
-
.accordion-summary-remove-button {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
box-shadow: none;
|
|
71
|
-
|
|
72
|
-
&:hover {
|
|
59
|
+
.accordion-summary-remove-button {
|
|
60
|
+
display: inline-block;
|
|
61
|
+
padding: govuk-spacing(2);
|
|
62
|
+
background-color: transparent;
|
|
63
|
+
position: relative;
|
|
64
|
+
cursor: pointer;
|
|
65
|
+
text-decoration: underline !important;
|
|
66
|
+
text-underline-offset: 4px;
|
|
67
|
+
color: govuk-colour("blue");
|
|
68
|
+
text-decoration-color: govuk-colour("blue");
|
|
69
|
+
text-decoration-thickness: 1px !important;
|
|
73
70
|
box-shadow: none;
|
|
74
|
-
|
|
75
|
-
|
|
71
|
+
|
|
72
|
+
&:hover {
|
|
73
|
+
background-color: #e8f1f8;
|
|
74
|
+
box-shadow: none;
|
|
75
|
+
text-decoration: none;
|
|
76
|
+
color: govuk-colour("black");
|
|
77
|
+
}
|
|
76
78
|
}
|
|
77
|
-
}
|
|
78
79
|
|
|
79
|
-
.accordion-summary-remove-button:hover:after {
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
}
|
|
80
|
+
.accordion-summary-remove-button:hover:after {
|
|
81
|
+
background-image: url(#{$dpr-images-path}icon-tag-remove-cross.svg);
|
|
82
|
+
content: "";
|
|
83
|
+
display: inline-block;
|
|
84
|
+
font-weight: bold;
|
|
85
|
+
height: 10px;
|
|
86
|
+
margin-left: 5px;
|
|
87
|
+
vertical-align: middle;
|
|
88
|
+
width: 10px;
|
|
89
|
+
}
|
|
89
90
|
|
|
90
|
-
.accordion-summary-remove-button:after {
|
|
91
|
-
|
|
92
|
-
}
|
|
91
|
+
.accordion-summary-remove-button:after {
|
|
92
|
+
display: none;
|
|
93
|
+
}
|
|
93
94
|
|
|
94
|
-
.accordion-summary-show-accordion-button {
|
|
95
|
-
|
|
96
|
-
}
|
|
95
|
+
.accordion-summary-show-accordion-button {
|
|
96
|
+
margin-right: 10px;
|
|
97
|
+
}
|
|
97
98
|
|
|
98
|
-
.selected-accordion-button {
|
|
99
|
-
|
|
100
|
-
}
|
|
99
|
+
.selected-accordion-button {
|
|
100
|
+
display: inline-block;
|
|
101
|
+
}
|
|
101
102
|
|
|
102
|
-
|
|
103
|
-
|
|
103
|
+
.govuk-details__summary-text {
|
|
104
|
+
text-underline-offset: 4px;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
@media print {
|
|
104
108
|
margin-bottom: govuk-spacing(3);
|
|
105
109
|
|
|
106
110
|
.accordion-section-row--Columns {
|
|
107
111
|
display: none;
|
|
108
112
|
}
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.accordion-section-header {
|
|
112
|
-
position: relative;
|
|
113
|
-
left: 0;
|
|
114
|
-
margin-bottom: govuk-spacing(1);
|
|
115
|
-
|
|
116
|
-
.selected-accordion-button {
|
|
117
|
-
display: block;
|
|
118
|
-
}
|
|
119
113
|
|
|
120
|
-
|
|
121
|
-
text-decoration: none !important;
|
|
122
|
-
color: black;
|
|
123
|
-
font-size: 14px;
|
|
114
|
+
.accordion-section-header {
|
|
124
115
|
position: relative;
|
|
125
|
-
|
|
116
|
+
left: 0;
|
|
117
|
+
margin-bottom: govuk-spacing(1);
|
|
118
|
+
|
|
119
|
+
.selected-accordion-button {
|
|
120
|
+
display: block;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
a.govuk-button--inverse.accordion-summary-remove-button {
|
|
124
|
+
text-decoration: none !important;
|
|
125
|
+
color: black;
|
|
126
|
+
font-size: 14px;
|
|
127
|
+
position: relative;
|
|
128
|
+
padding: 0 0 govuk-spacing(1);
|
|
129
|
+
}
|
|
126
130
|
}
|
|
127
131
|
}
|
|
128
|
-
}
|
|
129
132
|
|
|
130
|
-
::-webkit-scrollbar {
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
}
|
|
133
|
+
::-webkit-scrollbar {
|
|
134
|
+
height: 6px;
|
|
135
|
+
width: 0;
|
|
136
|
+
}
|
|
134
137
|
|
|
135
|
-
/* Track */
|
|
136
|
-
::-webkit-scrollbar-track {
|
|
137
|
-
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
/* Handle */
|
|
141
|
-
::-webkit-scrollbar-thumb {
|
|
142
|
-
|
|
138
|
+
/* Track */
|
|
139
|
+
::-webkit-scrollbar-track {
|
|
140
|
+
background: none;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/* Handle */
|
|
144
|
+
::-webkit-scrollbar-thumb {
|
|
145
|
+
background: govuk-colour("mid-grey");
|
|
146
|
+
}
|
|
143
147
|
}
|
|
144
|
-
.autocomplete-text-input {
|
|
148
|
+
.dpr-autocomplete-text-input {
|
|
145
149
|
position: relative;
|
|
146
150
|
|
|
147
151
|
ul {
|
|
@@ -181,95 +185,75 @@ $govuk-assets-path: "/assets/govuk/";
|
|
|
181
185
|
}
|
|
182
186
|
|
|
183
187
|
// VARIANT 1 STYLES
|
|
188
|
+
.dpr-card-group-v1 {
|
|
189
|
+
.card {
|
|
190
|
+
margin-bottom: 30px;
|
|
191
|
+
background: #fff;
|
|
192
|
+
border: 1px solid #d9dadb;
|
|
193
|
+
position: relative;
|
|
194
|
+
padding: 25px;
|
|
184
195
|
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
border: 1px solid #d9dadb;
|
|
189
|
-
position: relative;
|
|
190
|
-
padding: 25px;
|
|
191
|
-
|
|
192
|
-
@media(min-width: 769px) and (max-width: 1019px) {
|
|
193
|
-
margin-bottom: 10px;
|
|
194
|
-
}
|
|
196
|
+
@media(min-width: 769px) and (max-width: 1019px) {
|
|
197
|
+
margin-bottom: 10px;
|
|
198
|
+
}
|
|
195
199
|
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
200
|
+
@media(max-width: 768px) {
|
|
201
|
+
margin-bottom: 0;
|
|
202
|
+
min-height: 0 !important;
|
|
203
|
+
a, p {
|
|
204
|
+
font-size: 18px !important;
|
|
205
|
+
}
|
|
201
206
|
}
|
|
202
207
|
}
|
|
203
|
-
}
|
|
204
208
|
|
|
205
|
-
.card-wrapper {
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
}
|
|
209
|
+
.card-wrapper {
|
|
210
|
+
position: relative;
|
|
211
|
+
height: 100%;
|
|
212
|
+
}
|
|
209
213
|
|
|
210
|
-
.card__heading {
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
}
|
|
214
|
+
.card__heading {
|
|
215
|
+
margin-top: 0;
|
|
216
|
+
margin-bottom: 15px
|
|
217
|
+
}
|
|
214
218
|
|
|
215
|
-
.card__description {
|
|
216
|
-
|
|
217
|
-
}
|
|
219
|
+
.card__description {
|
|
220
|
+
margin-bottom: 0
|
|
221
|
+
}
|
|
218
222
|
|
|
219
|
-
.card--clickable {
|
|
220
|
-
|
|
221
|
-
}
|
|
223
|
+
.card--clickable {
|
|
224
|
+
border-bottom-width: 5px
|
|
225
|
+
}
|
|
222
226
|
|
|
223
|
-
.card--clickable:hover
|
|
224
|
-
|
|
225
|
-
}
|
|
227
|
+
.card--clickable:hover, .card--clickable:active {
|
|
228
|
+
cursor: pointer
|
|
229
|
+
}
|
|
226
230
|
|
|
227
|
-
.card--clickable:hover .card__heading a
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
}
|
|
231
|
+
.card--clickable:hover .card__heading a, .card--clickable:hover .card__link, .card--clickable:active .card__heading a, .card--clickable:active .card__link {
|
|
232
|
+
color: #003078;
|
|
233
|
+
text-decoration: none
|
|
234
|
+
}
|
|
231
235
|
|
|
232
|
-
.card--clickable:hover .card__heading a:focus
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
}
|
|
236
|
+
.card--clickable:hover .card__heading a:focus, .card--clickable:hover .card__link:focus, .card--clickable:active .card__heading a:focus, .card--clickable:active .card__link:focus {
|
|
237
|
+
outline: 3px solid transparent;
|
|
238
|
+
color: #0b0c0c;
|
|
239
|
+
background-color: #fd0;
|
|
240
|
+
box-shadow: 0 -2px #fd0, 0 4px #0b0c0c;
|
|
241
|
+
text-decoration: none
|
|
242
|
+
}
|
|
239
243
|
|
|
240
|
-
.card--clickable:hover {
|
|
241
|
-
|
|
242
|
-
}
|
|
244
|
+
.card--clickable:hover {
|
|
245
|
+
border-color: #b1b4b6
|
|
246
|
+
}
|
|
243
247
|
|
|
244
|
-
.card--clickable:active {
|
|
245
|
-
|
|
246
|
-
|
|
248
|
+
.card--clickable:active {
|
|
249
|
+
border-color: #b1b4b6;
|
|
250
|
+
bottom: -1px
|
|
251
|
+
}
|
|
247
252
|
}
|
|
248
|
-
|
|
249
253
|
// === END VARIANT 1 STYLES ===
|
|
250
254
|
|
|
251
255
|
// === VARIANT 2 STYLES ===
|
|
252
|
-
|
|
253
|
-
.dpr-card-group {
|
|
254
|
-
display: grid;
|
|
255
|
-
grid-template-columns: 1fr 1fr 1fr;
|
|
256
|
-
column-gap: 30px;
|
|
257
|
-
row-gap: 20px;
|
|
258
|
-
|
|
259
|
-
@media(min-width: 769px) and (max-width: 1019px) {
|
|
260
|
-
grid-template-columns: 1fr 1fr;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
@media(max-width: 768px) {
|
|
264
|
-
grid-template-columns: 1fr;
|
|
265
|
-
|
|
266
|
-
a,
|
|
267
|
-
p {
|
|
268
|
-
font-size: 16px;
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
|
|
256
|
+
.dpr-card-group-v2 {
|
|
273
257
|
.dpr-card-group__item {
|
|
274
258
|
min-height: 120px;
|
|
275
259
|
position: relative;
|
|
@@ -296,207 +280,226 @@ $govuk-assets-path: "/assets/govuk/";
|
|
|
296
280
|
}
|
|
297
281
|
}
|
|
298
282
|
}
|
|
299
|
-
|
|
300
283
|
// === END VARIANT 2 STYLES ===
|
|
301
284
|
|
|
302
|
-
.card-
|
|
303
|
-
|
|
304
|
-
|
|
285
|
+
.dpr-card-group {
|
|
286
|
+
.card-loading {
|
|
287
|
+
pointer-events: none;
|
|
288
|
+
}
|
|
305
289
|
|
|
306
|
-
.card-disabled {
|
|
307
|
-
|
|
308
|
-
}
|
|
290
|
+
.card-disabled {
|
|
291
|
+
pointer-events: none;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.card-disabled:hover {
|
|
295
|
+
pointer-events: none;
|
|
296
|
+
border: 1px solid #d9dadb;
|
|
297
|
+
bottom: 0;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
display: grid;
|
|
301
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
302
|
+
column-gap: 30px;
|
|
303
|
+
row-gap: 20px;
|
|
304
|
+
|
|
305
|
+
@media(min-width: 769px) and (max-width: 1019px) {
|
|
306
|
+
grid-template-columns: 1fr 1fr;
|
|
307
|
+
}
|
|
309
308
|
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
309
|
+
@media(max-width: 768px) {
|
|
310
|
+
grid-template-columns: 1fr;
|
|
311
|
+
|
|
312
|
+
a,
|
|
313
|
+
p {
|
|
314
|
+
font-size: 16px;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
314
317
|
}
|
|
315
318
|
#user-selected-columns-form {
|
|
316
319
|
margin-left: govuk-spacing(2);
|
|
317
|
-
}
|
|
318
320
|
|
|
319
|
-
.columns-container {
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
.govuk-checkboxes.govuk-checkboxes--small {
|
|
323
|
-
display: grid;
|
|
324
|
-
grid-template-columns: 1fr 1fr 1fr;
|
|
325
|
-
column-gap: 10px;
|
|
321
|
+
.columns-container {
|
|
322
|
+
position: relative;
|
|
326
323
|
|
|
327
|
-
|
|
324
|
+
.govuk-checkboxes.govuk-checkboxes--small {
|
|
325
|
+
display: grid;
|
|
326
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
327
|
+
column-gap: 10px;
|
|
328
|
+
|
|
329
|
+
@media(min-width: 769px) and (max-width: 1019px) {
|
|
328
330
|
grid-template-columns: 1fr 1fr;
|
|
329
331
|
}
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
332
|
+
|
|
333
|
+
@media(max-width: 768px) {
|
|
334
|
+
grid-template-columns: 1fr;
|
|
335
|
+
}
|
|
333
336
|
}
|
|
334
337
|
}
|
|
335
338
|
}
|
|
336
339
|
|
|
337
|
-
.columns-header {
|
|
338
|
-
padding-left: 10px;
|
|
339
|
-
padding-top: 10px;
|
|
340
|
-
}
|
|
341
340
|
// Cannibalised from MoJ sortable table
|
|
342
341
|
|
|
343
|
-
.
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
342
|
+
.table-container {
|
|
343
|
+
.data-table-header-button {
|
|
344
|
+
background-color: transparent;
|
|
345
|
+
border-width: 0;
|
|
346
|
+
-webkit-box-decoration-break: clone;
|
|
347
|
+
box-decoration-break: clone;
|
|
348
|
+
-webkit-box-shadow: 0 0 0 0;
|
|
349
|
+
-moz-box-shadow: 0 0 0 0;
|
|
350
|
+
box-shadow: 0 0 0 0;
|
|
351
|
+
color: #005ea5;
|
|
352
|
+
cursor: pointer;
|
|
353
|
+
font-family: inherit;
|
|
354
|
+
font-size: 1em;
|
|
355
|
+
font-weight: inherit;
|
|
356
|
+
margin: 0;
|
|
357
|
+
padding: 0 10px 0 0;
|
|
358
|
+
position: relative;
|
|
359
|
+
text-align: inherit;
|
|
360
|
+
text-decoration: none;
|
|
361
|
+
white-space: nowrap;
|
|
362
|
+
}
|
|
363
363
|
|
|
364
|
-
.data-table-header-button-sort-none:before {
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
}
|
|
364
|
+
.data-table-header-button-sort-none:before {
|
|
365
|
+
content: " \25bc";
|
|
366
|
+
position: absolute;
|
|
367
|
+
right: -1px;
|
|
368
|
+
top: 9px;
|
|
369
|
+
font-size: 0.5em;
|
|
370
|
+
}
|
|
371
371
|
|
|
372
|
-
.data-table-header-button-sort-none:after {
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
}
|
|
372
|
+
.data-table-header-button-sort-none:after {
|
|
373
|
+
content: " \25b2";
|
|
374
|
+
position: absolute;
|
|
375
|
+
right: -1px;
|
|
376
|
+
top: 1px;
|
|
377
|
+
font-size: 0.5em;
|
|
378
|
+
}
|
|
379
379
|
|
|
380
|
-
.data-table-header-button-sort-ascending:after {
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
}
|
|
380
|
+
.data-table-header-button-sort-ascending:after {
|
|
381
|
+
content: " \25b2";
|
|
382
|
+
font-size: .8em;
|
|
383
|
+
position: absolute;
|
|
384
|
+
right: -5px;
|
|
385
|
+
top: 2px;
|
|
386
|
+
}
|
|
387
387
|
|
|
388
|
-
.data-table-header-button-sort-descending:after {
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
}
|
|
388
|
+
.data-table-header-button-sort-descending:after {
|
|
389
|
+
content: " \25bc";
|
|
390
|
+
font-size: .8em;
|
|
391
|
+
position: absolute;
|
|
392
|
+
right: -5px;
|
|
393
|
+
top: 2px;
|
|
394
|
+
}
|
|
395
395
|
|
|
396
|
-
.data-table-cell-wrap-none {
|
|
397
|
-
|
|
398
|
-
}
|
|
396
|
+
.data-table-cell-wrap-none {
|
|
397
|
+
white-space: nowrap;
|
|
398
|
+
}
|
|
399
399
|
|
|
400
|
-
.data-table-cell-wrap-normal {
|
|
401
|
-
|
|
402
|
-
}
|
|
400
|
+
.data-table-cell-wrap-normal {
|
|
401
|
+
white-space: normal;
|
|
402
|
+
}
|
|
403
403
|
|
|
404
|
-
.data-table-cell-wrap-break-words {
|
|
405
|
-
|
|
406
|
-
}
|
|
404
|
+
.data-table-cell-wrap-break-words {
|
|
405
|
+
word-break: break-all;
|
|
406
|
+
}
|
|
407
407
|
|
|
408
|
-
#pageSize {
|
|
409
|
-
|
|
410
|
-
}
|
|
408
|
+
#pageSize {
|
|
409
|
+
min-width: 5em;
|
|
410
|
+
}
|
|
411
411
|
|
|
412
|
-
.govuk-table__cell--content {
|
|
413
|
-
|
|
414
|
-
}
|
|
412
|
+
.govuk-table__cell--content {
|
|
413
|
+
text-align: center;
|
|
414
|
+
}
|
|
415
415
|
|
|
416
|
-
.
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
}
|
|
416
|
+
.table-container {
|
|
417
|
+
position: relative;
|
|
418
|
+
}
|
|
420
419
|
|
|
421
|
-
.
|
|
422
|
-
|
|
423
|
-
|
|
420
|
+
a.disabled {
|
|
421
|
+
pointer-events: none;
|
|
422
|
+
cursor: default;
|
|
423
|
+
opacity: 0.5;
|
|
424
|
+
}
|
|
424
425
|
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
opacity: 0.5;
|
|
429
|
-
}
|
|
426
|
+
.pagination {
|
|
427
|
+
overflow: auto;
|
|
428
|
+
}
|
|
430
429
|
|
|
431
|
-
.
|
|
432
|
-
|
|
433
|
-
}
|
|
430
|
+
.data-table-page-size-container {
|
|
431
|
+
height: 40px;
|
|
432
|
+
}
|
|
434
433
|
|
|
435
|
-
.data-table-page-size
|
|
436
|
-
|
|
437
|
-
}
|
|
434
|
+
.data-table-page-size {
|
|
435
|
+
float: right;
|
|
438
436
|
|
|
439
|
-
|
|
440
|
-
|
|
437
|
+
@media(max-width: 640px) {
|
|
438
|
+
width: 100%;
|
|
439
|
+
}
|
|
441
440
|
|
|
442
|
-
|
|
443
|
-
|
|
441
|
+
@media(max-width: 319px) {
|
|
442
|
+
.govuk-form-group {
|
|
443
|
+
margin-bottom: 0;
|
|
444
|
+
}
|
|
445
|
+
height: 72px;
|
|
446
|
+
margin-bottom: govuk-spacing(2);
|
|
447
|
+
}
|
|
444
448
|
}
|
|
445
449
|
|
|
446
450
|
@media(max-width: 319px) {
|
|
447
|
-
|
|
448
|
-
|
|
451
|
+
#pageSize {
|
|
452
|
+
width: 100%;
|
|
449
453
|
}
|
|
450
|
-
height: 72px;
|
|
451
|
-
margin-bottom: govuk-spacing(2);
|
|
452
454
|
}
|
|
453
|
-
}
|
|
454
455
|
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
width: 100%;
|
|
456
|
+
.dpr-table-wrapper {
|
|
457
|
+
overflow: scroll;
|
|
458
458
|
}
|
|
459
|
-
}
|
|
460
459
|
|
|
461
|
-
.
|
|
462
|
-
|
|
463
|
-
|
|
460
|
+
.table-row-count {
|
|
461
|
+
color: govuk-colour("dark-grey");
|
|
462
|
+
font-weight: 100;
|
|
463
|
+
text-align: right;
|
|
464
|
+
}
|
|
464
465
|
|
|
465
|
-
.table-row-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
text-align: right;
|
|
469
|
-
}
|
|
466
|
+
.table-row--no-border {
|
|
467
|
+
border-bottom: none;
|
|
468
|
+
}
|
|
470
469
|
|
|
471
|
-
.table-row--
|
|
472
|
-
|
|
473
|
-
}
|
|
470
|
+
.table-row-count--top {
|
|
471
|
+
padding-bottom: govuk-spacing(0);
|
|
472
|
+
}
|
|
474
473
|
|
|
475
|
-
.table-row-count--
|
|
476
|
-
|
|
474
|
+
.table-row-count--bottom {
|
|
475
|
+
padding-top: govuk-spacing(2);
|
|
476
|
+
padding-bottom: govuk-spacing(2);
|
|
477
|
+
}
|
|
477
478
|
}
|
|
478
479
|
|
|
479
|
-
.table-
|
|
480
|
-
|
|
481
|
-
|
|
480
|
+
.data-table-empty-message {
|
|
481
|
+
text-align: center;
|
|
482
|
+
position: relative;
|
|
482
483
|
}
|
|
483
|
-
|
|
484
|
+
|
|
485
|
+
.date-range-date-range {
|
|
484
486
|
.govuk-form-group {
|
|
485
|
-
margin-bottom:
|
|
487
|
+
margin-bottom: 0;
|
|
486
488
|
}
|
|
487
|
-
}
|
|
488
489
|
|
|
489
|
-
.daterange-set-to-minmax {
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
490
|
+
.daterange-set-to-minmax {
|
|
491
|
+
cursor: pointer;
|
|
492
|
+
text-align: right;
|
|
493
|
+
margin-bottom: govuk-spacing(0);
|
|
494
|
+
margin-top: govuk-spacing(1);
|
|
494
495
|
|
|
495
|
-
|
|
496
|
-
|
|
496
|
+
&:hover {
|
|
497
|
+
color: govuk-colour("light-blue")
|
|
498
|
+
}
|
|
497
499
|
}
|
|
498
500
|
}
|
|
499
|
-
|
|
501
|
+
|
|
502
|
+
.dpr-dropdown-button {
|
|
500
503
|
position: relative;
|
|
501
504
|
float: right;
|
|
502
505
|
|
|
@@ -509,7 +512,7 @@ a.disabled {
|
|
|
509
512
|
background-color: white;
|
|
510
513
|
border-top: #b1b4b6 1px solid;
|
|
511
514
|
display: none;
|
|
512
|
-
right:
|
|
515
|
+
right: 0;
|
|
513
516
|
list-style-type: none;
|
|
514
517
|
margin: 0;
|
|
515
518
|
padding: 0;
|
|
@@ -625,149 +628,160 @@ a.disabled {
|
|
|
625
628
|
color: black;
|
|
626
629
|
}
|
|
627
630
|
}
|
|
628
|
-
.
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
@media(min-width: 769px) and (max-width: 1019px) {
|
|
636
|
-
grid-template-columns: 1fr 1fr;
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
@media(max-width: 768px) {
|
|
640
|
-
grid-template-columns: 1fr;
|
|
641
|
-
}
|
|
642
|
-
}
|
|
631
|
+
.dpr-filters {
|
|
632
|
+
.filter-container {
|
|
633
|
+
position: relative;
|
|
634
|
+
display: grid;
|
|
635
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
636
|
+
column-gap: govuk-spacing(3);
|
|
637
|
+
row-gap: govuk-spacing(3);
|
|
643
638
|
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
padding: govuk-spacing(4);
|
|
639
|
+
@media(min-width: 769px) and (max-width: 1019px) {
|
|
640
|
+
grid-template-columns: 1fr 1fr;
|
|
641
|
+
}
|
|
648
642
|
|
|
649
|
-
|
|
650
|
-
|
|
643
|
+
@media(max-width: 768px) {
|
|
644
|
+
grid-template-columns: 1fr;
|
|
645
|
+
}
|
|
651
646
|
}
|
|
652
|
-
}
|
|
653
647
|
|
|
654
|
-
.
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
.filter-actions {
|
|
659
|
-
margin-top: 15px;
|
|
660
|
-
height: 40px;
|
|
648
|
+
.filter-item {
|
|
649
|
+
border-bottom: 2px Solid govuk-colour("mid-grey");
|
|
650
|
+
background-color: lighten(govuk-colour("light-grey"), 3%);
|
|
651
|
+
padding: govuk-spacing(4);
|
|
661
652
|
|
|
662
|
-
|
|
663
|
-
|
|
653
|
+
.govuk-form-group {
|
|
654
|
+
margin-bottom: govuk-spacing(2);
|
|
655
|
+
}
|
|
664
656
|
}
|
|
665
657
|
|
|
666
|
-
.filter-actions
|
|
667
|
-
|
|
658
|
+
.filter-actions {
|
|
659
|
+
margin-top: 15px;
|
|
660
|
+
height: 40px;
|
|
668
661
|
|
|
669
662
|
@media(max-width: 768px) {
|
|
670
|
-
|
|
663
|
+
height: 80px;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.filter-actions-buttons {
|
|
667
|
+
float: right;
|
|
668
|
+
|
|
669
|
+
@media(max-width: 768px) {
|
|
670
|
+
width: 100%;
|
|
671
|
+
}
|
|
671
672
|
}
|
|
672
673
|
}
|
|
673
674
|
}
|
|
674
|
-
|
|
675
|
+
|
|
676
|
+
.dpr-loading-panel {
|
|
675
677
|
display: none;
|
|
676
678
|
width: 100%;
|
|
677
679
|
height: 100%;
|
|
678
680
|
position: absolute;
|
|
679
|
-
top:
|
|
680
|
-
left:
|
|
681
|
+
top: 0;
|
|
682
|
+
left: 0;
|
|
681
683
|
z-index: 2;
|
|
682
684
|
justify-content: center;
|
|
683
685
|
align-items: center;
|
|
684
|
-
background-color:
|
|
685
|
-
}
|
|
686
|
+
background-color: rgba(255, 255, 255, 0.8);
|
|
686
687
|
|
|
687
|
-
|
|
688
|
-
|
|
688
|
+
&.show {
|
|
689
|
+
display: flex;
|
|
690
|
+
}
|
|
689
691
|
}
|
|
690
692
|
|
|
691
693
|
.dpr-loading-anim {
|
|
692
694
|
display: none;
|
|
693
|
-
}
|
|
694
695
|
|
|
695
|
-
|
|
696
|
+
&.show {
|
|
696
697
|
display: inline-block;
|
|
697
698
|
position: relative;
|
|
698
699
|
width: 80px;
|
|
699
700
|
height: 80px;
|
|
700
701
|
}
|
|
701
702
|
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
}
|
|
703
|
+
&.show div {
|
|
704
|
+
position: absolute;
|
|
705
|
+
width: 6px;
|
|
706
|
+
height: 6px;
|
|
707
|
+
background: govuk-colour("light-blue");
|
|
708
|
+
border-radius: 50%;
|
|
709
|
+
animation: dpr-loading-anim 1.2s linear infinite;
|
|
710
|
+
}
|
|
710
711
|
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
}
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
712
|
+
&.show div:nth-child(1) {
|
|
713
|
+
animation-delay: 0s;
|
|
714
|
+
top: 37px;
|
|
715
|
+
left: 66px;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
&.show div:nth-child(2) {
|
|
719
|
+
animation-delay: -0.1s;
|
|
720
|
+
top: 22px;
|
|
721
|
+
left: 62px;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
&.show div:nth-child(3) {
|
|
725
|
+
animation-delay: -0.2s;
|
|
726
|
+
top: 11px;
|
|
727
|
+
left: 52px;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
&.show div:nth-child(4) {
|
|
731
|
+
animation-delay: -0.3s;
|
|
732
|
+
top: 7px;
|
|
733
|
+
left: 37px;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
&.show div:nth-child(5) {
|
|
737
|
+
animation-delay: -0.4s;
|
|
738
|
+
top: 11px;
|
|
739
|
+
left: 22px;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
&.show div:nth-child(6) {
|
|
743
|
+
animation-delay: -0.5s;
|
|
744
|
+
top: 22px;
|
|
745
|
+
left: 11px;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
&.show div:nth-child(7) {
|
|
749
|
+
animation-delay: -0.6s;
|
|
750
|
+
top: 37px;
|
|
751
|
+
left: 7px;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
&.show div:nth-child(8) {
|
|
755
|
+
animation-delay: -0.7s;
|
|
756
|
+
top: 52px;
|
|
757
|
+
left: 11px;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
&.show div:nth-child(9) {
|
|
761
|
+
animation-delay: -0.8s;
|
|
762
|
+
top: 62px;
|
|
763
|
+
left: 22px;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
&.show div:nth-child(10) {
|
|
767
|
+
animation-delay: -0.9s;
|
|
768
|
+
top: 66px;
|
|
769
|
+
left: 37px;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
&.show div:nth-child(11) {
|
|
773
|
+
animation-delay: -1s;
|
|
774
|
+
top: 62px;
|
|
775
|
+
left: 52px;
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
&.show div:nth-child(12) {
|
|
779
|
+
animation-delay: -1.1s;
|
|
780
|
+
top: 52px;
|
|
781
|
+
left: 62px;
|
|
782
|
+
}
|
|
770
783
|
}
|
|
784
|
+
|
|
771
785
|
@keyframes dpr-loading-anim {
|
|
772
786
|
0%, 20%, 80%, 100% {
|
|
773
787
|
transform: scale(1);
|
|
@@ -776,7 +790,12 @@ a.disabled {
|
|
|
776
790
|
transform: scale(1.5);
|
|
777
791
|
}
|
|
778
792
|
}
|
|
779
|
-
|
|
793
|
+
|
|
780
794
|
.report-list-container {
|
|
781
795
|
position: relative;
|
|
782
|
-
|
|
796
|
+
|
|
797
|
+
.columns-header {
|
|
798
|
+
padding-left: 10px;
|
|
799
|
+
padding-top: 10px;
|
|
800
|
+
}
|
|
801
|
+
}
|