@ministryofjustice/hmpps-digital-prison-reporting-frontend 2.5.0 → 3.0.0
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 +9 -7
- package/dpr/assets/css/all.css +1 -1
- package/dpr/assets/js/all.mjs +406 -0
- package/dpr/components/autocomplete-text-input/view.njk +1 -1
- package/dpr/components/card-group/view.njk +1 -1
- package/dpr/components/columns/view.njk +1 -1
- package/dpr/components/data-table/view.njk +1 -1
- package/dpr/components/dropdown-button/view.njk +1 -2
- package/dpr/components/filters/view.njk +7 -6
- package/dpr/components/report-list/list.njk +1 -2
- package/dpr/types/ReportQuery.ts +1 -0
- package/govuk-prototype-kit.config.json +1 -1
- package/package.json +3 -5
- package/package.zip +0 -0
- package/dpr/assets/js/client.js +0 -1
package/dpr/all.scss
CHANGED
|
@@ -4,7 +4,6 @@ $dpr-images-path: "/assets/dpr/images/";
|
|
|
4
4
|
$govuk-assets-path: "/assets/govuk/";
|
|
5
5
|
|
|
6
6
|
@import 'govuk/all';
|
|
7
|
-
@import 'moj/all';
|
|
8
7
|
.accordion-section {
|
|
9
8
|
margin-bottom: govuk-spacing(8);
|
|
10
9
|
position: relative;
|
|
@@ -41,7 +40,7 @@ $govuk-assets-path: "/assets/govuk/";
|
|
|
41
40
|
.accordion-summary-remove-button {
|
|
42
41
|
display: inline-block;
|
|
43
42
|
padding: govuk-spacing(2);
|
|
44
|
-
background-color:
|
|
43
|
+
background-color: transparent;
|
|
45
44
|
position: relative;
|
|
46
45
|
cursor: pointer;
|
|
47
46
|
text-decoration: underline !important;
|
|
@@ -50,7 +49,6 @@ $govuk-assets-path: "/assets/govuk/";
|
|
|
50
49
|
text-decoration-color: govuk-colour("blue");
|
|
51
50
|
text-decoration-thickness: 1px;
|
|
52
51
|
box-shadow: none;
|
|
53
|
-
text-underline-offset: 4px;
|
|
54
52
|
|
|
55
53
|
&:hover {
|
|
56
54
|
box-shadow: none;
|
|
@@ -93,7 +91,7 @@ $govuk-assets-path: "/assets/govuk/";
|
|
|
93
91
|
|
|
94
92
|
.accordion-section-header {
|
|
95
93
|
position: relative;
|
|
96
|
-
left:
|
|
94
|
+
left: 0;
|
|
97
95
|
margin-bottom: govuk-spacing(1);
|
|
98
96
|
|
|
99
97
|
.selected-accordion-button {
|
|
@@ -105,15 +103,14 @@ $govuk-assets-path: "/assets/govuk/";
|
|
|
105
103
|
color: black;
|
|
106
104
|
font-size: 14px;
|
|
107
105
|
position: relative;
|
|
108
|
-
padding:
|
|
109
|
-
padding-bottom: govuk-spacing(1);
|
|
106
|
+
padding: 0 0 govuk-spacing(1);
|
|
110
107
|
}
|
|
111
108
|
}
|
|
112
109
|
}
|
|
113
110
|
|
|
114
111
|
::-webkit-scrollbar {
|
|
115
112
|
height: 6px;
|
|
116
|
-
width:
|
|
113
|
+
width: 0;
|
|
117
114
|
}
|
|
118
115
|
|
|
119
116
|
/* Track */
|
|
@@ -259,6 +256,11 @@ $govuk-assets-path: "/assets/govuk/";
|
|
|
259
256
|
|
|
260
257
|
.columns-container {
|
|
261
258
|
position: relative;
|
|
259
|
+
|
|
260
|
+
.govuk-checkboxes__input, .govuk-checkboxes__label {
|
|
261
|
+
display: inline-block;
|
|
262
|
+
vertical-align:top;
|
|
263
|
+
}
|
|
262
264
|
}
|
|
263
265
|
|
|
264
266
|
.columns-header {
|