pict-section-recordset 1.0.64 → 1.0.67
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/docs/_cover.md +1 -1
- package/docs/_version.json +7 -0
- package/docs/css/docuserve.css +277 -23
- package/docs/index.html +2 -2
- package/docs/retold-catalog.json +33 -1
- package/docs/retold-keyword-index.json +1 -1
- package/example_applications/bookstore/.quackage.json +9 -0
- package/example_applications/bookstore/Bookstore-Application-Configuration.json +4 -0
- package/example_applications/bookstore/Bookstore-Application.js +671 -0
- package/example_applications/bookstore/css/bookstore.css +729 -0
- package/example_applications/bookstore/css/pure.min.css +11 -0
- package/example_applications/bookstore/html/index.html +46 -0
- package/example_applications/bookstore/package.json +34 -0
- package/example_applications/bookstore/providers/PictRouter-Bookstore.json +32 -0
- package/example_applications/bookstore/views/PictView-Bookstore-Content-About.json +21 -0
- package/example_applications/bookstore/views/PictView-Bookstore-Content-Legal.json +21 -0
- package/example_applications/bookstore/views/PictView-Bookstore-Dashboard.js +147 -0
- package/example_applications/bookstore/views/PictView-Bookstore-Layout.js +85 -0
- package/example_applications/bookstore/views/PictView-Bookstore-Login.js +58 -0
- package/example_applications/bookstore/views/PictView-Bookstore-Navigation.js +228 -0
- package/package.json +9 -8
- package/source/services/RecordsSet-MetaController.js +22 -0
- package/source/templates/Pict-Template-FilterInstanceViews.js +143 -25
- package/source/views/RecordSet-Filters.js +25 -0
- package/test/PictSectionRecordSet-Basic_tests.js +83 -0
- package/test/PictSectionRecordSet-Filter-InstanceViews-Render_tests.js +328 -0
- package/types/Pict-Section-RecordSet.d.ts +2 -0
- package/types/providers/Filter-Data-Provider.d.ts +1 -0
- package/types/providers/Filter-Data-Provider.d.ts.map +1 -1
- package/types/providers/RecordSet-DynamicRecordsetSolver.d.ts +6 -0
- package/types/providers/RecordSet-DynamicRecordsetSolver.d.ts.map +1 -1
- package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts +8 -0
- package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts.map +1 -1
- package/types/providers/RecordSet-Router.d.ts +2 -0
- package/types/providers/RecordSet-Router.d.ts.map +1 -1
- package/types/services/RecordsSet-MetaController.d.ts +10 -5
- package/types/services/RecordsSet-MetaController.d.ts.map +1 -1
- package/types/templates/Pict-Template-FilterInstanceViews.d.ts +42 -2
- package/types/templates/Pict-Template-FilterInstanceViews.d.ts.map +1 -1
- package/types/templates/Pict-Template-FilterView.d.ts +0 -2
- package/types/templates/Pict-Template-FilterView.d.ts.map +1 -1
- package/types/views/Filter-PersistenceView.d.ts +31 -6
- package/types/views/Filter-PersistenceView.d.ts.map +1 -1
- package/types/views/RecordSet-Filters.d.ts +31 -0
- package/types/views/RecordSet-Filters.d.ts.map +1 -1
- package/types/views/RecordSet-RecordBaseView.d.ts +2 -0
- package/types/views/RecordSet-RecordBaseView.d.ts.map +1 -1
- package/types/views/dashboard/RecordSet-Dashboard.d.ts +2 -0
- package/types/views/dashboard/RecordSet-Dashboard.d.ts.map +1 -1
|
@@ -0,0 +1,729 @@
|
|
|
1
|
+
body {
|
|
2
|
+
color: #264653;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
6
|
+
background: #FAEDCD;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.pure-img-responsive {
|
|
10
|
+
max-width: 100%;
|
|
11
|
+
height: auto;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/*
|
|
15
|
+
Add transition to containers so they can push in and out.
|
|
16
|
+
*/
|
|
17
|
+
#layout,
|
|
18
|
+
#menu,
|
|
19
|
+
.menu-link {
|
|
20
|
+
-webkit-transition: all 0.2s ease-out;
|
|
21
|
+
-moz-transition: all 0.2s ease-out;
|
|
22
|
+
-ms-transition: all 0.2s ease-out;
|
|
23
|
+
-o-transition: all 0.2s ease-out;
|
|
24
|
+
transition: all 0.2s ease-out;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/*
|
|
28
|
+
This is the parent `<div>` that contains the menu and the content area.
|
|
29
|
+
*/
|
|
30
|
+
#layout {
|
|
31
|
+
position: relative;
|
|
32
|
+
left: 0;
|
|
33
|
+
padding-left: 0;
|
|
34
|
+
}
|
|
35
|
+
#layout.active #menu {
|
|
36
|
+
left: 200px;
|
|
37
|
+
width: 200px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
#layout.active .menu-link {
|
|
41
|
+
left: 200px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/*
|
|
45
|
+
The content `<div>` is where all your content goes.
|
|
46
|
+
*/
|
|
47
|
+
.content {
|
|
48
|
+
margin: 0 auto;
|
|
49
|
+
padding: 0 2em;
|
|
50
|
+
max-width: 900px;
|
|
51
|
+
margin-bottom: 50px;
|
|
52
|
+
line-height: 1.6em;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.header {
|
|
56
|
+
margin: 0;
|
|
57
|
+
color: #264653;
|
|
58
|
+
text-align: center;
|
|
59
|
+
padding: 2.5em 2em 0;
|
|
60
|
+
border-bottom: 1px solid #D4A373;
|
|
61
|
+
}
|
|
62
|
+
.header h1 {
|
|
63
|
+
margin: 0.2em 0;
|
|
64
|
+
font-size: 2.5em;
|
|
65
|
+
font-weight: 300;
|
|
66
|
+
}
|
|
67
|
+
.header h2 {
|
|
68
|
+
font-weight: 300;
|
|
69
|
+
color: #D4A373;
|
|
70
|
+
padding: 0;
|
|
71
|
+
margin-top: 0;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.content-subhead {
|
|
75
|
+
margin: 50px 0 20px 0;
|
|
76
|
+
font-weight: 300;
|
|
77
|
+
color: #E76F51;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/*
|
|
81
|
+
The `#menu` `<div>` is the parent `<div>` that contains the `.pure-menu` that
|
|
82
|
+
appears on the left side of the page.
|
|
83
|
+
*/
|
|
84
|
+
|
|
85
|
+
#menu {
|
|
86
|
+
margin-left: -200px; /* "#menu" width */
|
|
87
|
+
width: 200px;
|
|
88
|
+
position: fixed;
|
|
89
|
+
top: 0;
|
|
90
|
+
left: 0;
|
|
91
|
+
bottom: 0;
|
|
92
|
+
z-index: 1000; /* so the menu or its navicon stays above all content */
|
|
93
|
+
background: #264653;
|
|
94
|
+
overflow-y: auto;
|
|
95
|
+
}
|
|
96
|
+
/*
|
|
97
|
+
All anchors inside the menu should be styled like this.
|
|
98
|
+
*/
|
|
99
|
+
#menu a {
|
|
100
|
+
color: #D4A373;
|
|
101
|
+
border: none;
|
|
102
|
+
padding: 0.6em 0 0.6em 0.6em;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/*
|
|
106
|
+
Remove all background/borders, since we are applying them to #menu.
|
|
107
|
+
*/
|
|
108
|
+
#menu .pure-menu,
|
|
109
|
+
#menu .pure-menu ul {
|
|
110
|
+
border: none;
|
|
111
|
+
background: transparent;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/*
|
|
115
|
+
Add that light border to separate items into groups.
|
|
116
|
+
*/
|
|
117
|
+
#menu .pure-menu ul,
|
|
118
|
+
#menu .pure-menu .menu-item-divided {
|
|
119
|
+
border-top: 1px solid #1A3340;
|
|
120
|
+
}
|
|
121
|
+
/*
|
|
122
|
+
Change color of the anchor links on hover/focus.
|
|
123
|
+
*/
|
|
124
|
+
#menu .pure-menu li a:hover,
|
|
125
|
+
#menu .pure-menu li a:focus {
|
|
126
|
+
background: #1A3340;
|
|
127
|
+
color: #FAEDCD;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/*
|
|
131
|
+
This styles the selected menu item `<li>`.
|
|
132
|
+
*/
|
|
133
|
+
#menu .pure-menu-selected,
|
|
134
|
+
#menu .pure-menu-heading {
|
|
135
|
+
background: #E76F51;
|
|
136
|
+
}
|
|
137
|
+
/*
|
|
138
|
+
This styles a link within a selected menu item `<li>`.
|
|
139
|
+
*/
|
|
140
|
+
#menu .pure-menu-selected a {
|
|
141
|
+
color: #fff;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/*
|
|
145
|
+
This styles the menu heading.
|
|
146
|
+
*/
|
|
147
|
+
#menu .pure-menu-heading {
|
|
148
|
+
font-size: 110%;
|
|
149
|
+
color: #fff;
|
|
150
|
+
margin: 0;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/* -- Dynamic Button For Responsive Menu ------------------------------------- */
|
|
154
|
+
|
|
155
|
+
/*
|
|
156
|
+
`.menu-link` represents the responsive menu toggle that shows/hides on
|
|
157
|
+
small screens.
|
|
158
|
+
*/
|
|
159
|
+
.menu-link {
|
|
160
|
+
position: fixed;
|
|
161
|
+
display: block; /* show this only on small screens */
|
|
162
|
+
top: 0;
|
|
163
|
+
left: 0; /* "#menu width" */
|
|
164
|
+
background: #264653;
|
|
165
|
+
background: rgba(38,70,83,0.85);
|
|
166
|
+
font-size: 10px; /* change this value to increase/decrease button size */
|
|
167
|
+
z-index: 10;
|
|
168
|
+
width: 2em;
|
|
169
|
+
height: auto;
|
|
170
|
+
padding: 2.1em 1.6em;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.menu-link:hover,
|
|
174
|
+
.menu-link:focus {
|
|
175
|
+
background: #264653;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.menu-link span {
|
|
179
|
+
position: relative;
|
|
180
|
+
display: block;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.menu-link span,
|
|
184
|
+
.menu-link span:before,
|
|
185
|
+
.menu-link span:after {
|
|
186
|
+
background-color: #FAEDCD;
|
|
187
|
+
pointer-events: none;
|
|
188
|
+
width: 100%;
|
|
189
|
+
height: 0.2em;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.menu-link span:before,
|
|
193
|
+
.menu-link span:after {
|
|
194
|
+
position: absolute;
|
|
195
|
+
margin-top: -0.6em;
|
|
196
|
+
content: " ";
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.menu-link span:after {
|
|
200
|
+
margin-top: 0.6em;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
/* -- Login Screen ----------------------------------------------------------- */
|
|
205
|
+
|
|
206
|
+
#Bookstore-Login-Container {
|
|
207
|
+
display: flex;
|
|
208
|
+
flex-direction: column;
|
|
209
|
+
align-items: center;
|
|
210
|
+
justify-content: center;
|
|
211
|
+
min-height: 100vh;
|
|
212
|
+
padding: 2rem;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.bookstore-login-header {
|
|
216
|
+
text-align: center;
|
|
217
|
+
margin-bottom: 1.5rem;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.bookstore-login-header h1 {
|
|
221
|
+
font-size: 2rem;
|
|
222
|
+
color: #264653;
|
|
223
|
+
margin: 0 0 0.25rem 0;
|
|
224
|
+
font-weight: 300;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.bookstore-login-header p {
|
|
228
|
+
color: #D4A373;
|
|
229
|
+
font-size: 0.9rem;
|
|
230
|
+
margin: 0;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.bookstore-login-hint {
|
|
234
|
+
margin-top: 1rem;
|
|
235
|
+
text-align: center;
|
|
236
|
+
font-size: 0.8rem;
|
|
237
|
+
color: #999;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.bookstore-login-hint code {
|
|
241
|
+
background: #264653;
|
|
242
|
+
color: #FAEDCD;
|
|
243
|
+
padding: 0.1rem 0.35rem;
|
|
244
|
+
border-radius: 3px;
|
|
245
|
+
font-size: 0.75rem;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
/* -- PRSP RecordSet Container Styling --------------------------------------- */
|
|
249
|
+
|
|
250
|
+
#PRSP_Container {
|
|
251
|
+
background: #fff;
|
|
252
|
+
border: 1px solid #D4A373;
|
|
253
|
+
border-top: 4px solid #E76F51;
|
|
254
|
+
border-radius: 6px;
|
|
255
|
+
padding: 1.25rem;
|
|
256
|
+
box-shadow: 0 2px 8px rgba(38,70,83,0.08);
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
/* Form Elements inside PRSP */
|
|
260
|
+
#PRSP_Container input[type="text"],
|
|
261
|
+
#PRSP_Container input[type="number"],
|
|
262
|
+
#PRSP_Container input[type="email"],
|
|
263
|
+
#PRSP_Container input[type="date"],
|
|
264
|
+
#PRSP_Container textarea,
|
|
265
|
+
#PRSP_Container select {
|
|
266
|
+
border: 1px solid #D4C4A8;
|
|
267
|
+
background: #FFFCF7;
|
|
268
|
+
padding: 0.45rem 0.6rem;
|
|
269
|
+
border-radius: 4px;
|
|
270
|
+
font-size: 0.9rem;
|
|
271
|
+
color: #264653;
|
|
272
|
+
width: 100%;
|
|
273
|
+
}
|
|
274
|
+
#PRSP_Container input:focus,
|
|
275
|
+
#PRSP_Container textarea:focus,
|
|
276
|
+
#PRSP_Container select:focus {
|
|
277
|
+
outline: none;
|
|
278
|
+
border-color: #E76F51;
|
|
279
|
+
box-shadow: 0 0 0 2px rgba(231,111,81,0.15);
|
|
280
|
+
}
|
|
281
|
+
#PRSP_Container label {
|
|
282
|
+
color: #264653;
|
|
283
|
+
font-weight: 600;
|
|
284
|
+
font-size: 0.85rem;
|
|
285
|
+
}
|
|
286
|
+
#PRSP_Container h1, #PRSP_Container h2, #PRSP_Container h3, #PRSP_Container h4 {
|
|
287
|
+
color: #264653;
|
|
288
|
+
}
|
|
289
|
+
#PRSP_Container button,
|
|
290
|
+
#PRSP_Container input[type="button"],
|
|
291
|
+
#PRSP_Container input[type="submit"] {
|
|
292
|
+
background: #E76F51;
|
|
293
|
+
color: #fff;
|
|
294
|
+
border: none;
|
|
295
|
+
padding: 0.5rem 1.25rem;
|
|
296
|
+
border-radius: 4px;
|
|
297
|
+
font-size: 0.85rem;
|
|
298
|
+
font-weight: 600;
|
|
299
|
+
cursor: pointer;
|
|
300
|
+
}
|
|
301
|
+
#PRSP_Container button:hover,
|
|
302
|
+
#PRSP_Container input[type="button"]:hover,
|
|
303
|
+
#PRSP_Container input[type="submit"]:hover {
|
|
304
|
+
background: #C45A3E;
|
|
305
|
+
}
|
|
306
|
+
#PRSP_Container table {
|
|
307
|
+
width: 100%;
|
|
308
|
+
border-collapse: collapse;
|
|
309
|
+
}
|
|
310
|
+
#PRSP_Container th {
|
|
311
|
+
background: #264653;
|
|
312
|
+
color: #FAEDCD;
|
|
313
|
+
padding: 0.5rem 0.75rem;
|
|
314
|
+
text-align: left;
|
|
315
|
+
font-size: 0.8rem;
|
|
316
|
+
}
|
|
317
|
+
#PRSP_Container td {
|
|
318
|
+
padding: 0.5rem 0.75rem;
|
|
319
|
+
border-bottom: 1px solid #E8D9C0;
|
|
320
|
+
font-size: 0.85rem;
|
|
321
|
+
}
|
|
322
|
+
#PRSP_Container tr:nth-child(even) td {
|
|
323
|
+
background: #FFF9F0;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
/* Title Section */
|
|
327
|
+
#PRSP_Title_Container {
|
|
328
|
+
margin-bottom: 1rem;
|
|
329
|
+
}
|
|
330
|
+
#PRSP_Title_Container h1 {
|
|
331
|
+
margin: 0 0 0.15rem;
|
|
332
|
+
font-size: 1.4rem;
|
|
333
|
+
}
|
|
334
|
+
#PRSP_Title_Container h2 {
|
|
335
|
+
margin: 0;
|
|
336
|
+
font-size: 0.95rem;
|
|
337
|
+
font-weight: 400;
|
|
338
|
+
color: #D4A373;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
/* Filter Section */
|
|
342
|
+
#PRSP_Filters_Container {
|
|
343
|
+
background: #FFF9F0;
|
|
344
|
+
border: 1px solid #D4A373;
|
|
345
|
+
border-radius: 6px;
|
|
346
|
+
padding: 1rem 1.25rem;
|
|
347
|
+
margin-bottom: 1rem;
|
|
348
|
+
}
|
|
349
|
+
#PRSP_Filter_Form {
|
|
350
|
+
display: flex;
|
|
351
|
+
flex-direction: column;
|
|
352
|
+
gap: 0.75rem;
|
|
353
|
+
}
|
|
354
|
+
#PRSP_Filter_Form > fieldset {
|
|
355
|
+
border: none;
|
|
356
|
+
padding: 0;
|
|
357
|
+
margin: 0;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
/* Search filter row */
|
|
361
|
+
#PRSP_Filter_Form > fieldset:first-child {
|
|
362
|
+
display: flex;
|
|
363
|
+
align-items: center;
|
|
364
|
+
gap: 0.75rem;
|
|
365
|
+
}
|
|
366
|
+
#PRSP_Filter_Form > fieldset:first-child label {
|
|
367
|
+
flex-shrink: 0;
|
|
368
|
+
font-weight: 600;
|
|
369
|
+
font-size: 0.85rem;
|
|
370
|
+
color: #264653;
|
|
371
|
+
}
|
|
372
|
+
#PRSP_Filter_Form > fieldset:first-child input[type="text"] {
|
|
373
|
+
flex: 1;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
/* Filter instances */
|
|
377
|
+
#PRSP_Filter_Instances {
|
|
378
|
+
display: flex;
|
|
379
|
+
flex-direction: column;
|
|
380
|
+
gap: 0.5rem;
|
|
381
|
+
}
|
|
382
|
+
#PRSP_Filter_Instances > div {
|
|
383
|
+
display: flex;
|
|
384
|
+
align-items: center;
|
|
385
|
+
gap: 0.5rem;
|
|
386
|
+
background: #fff;
|
|
387
|
+
border: 1px solid #E8D9C0;
|
|
388
|
+
border-radius: 4px;
|
|
389
|
+
padding: 0.5rem 0.75rem;
|
|
390
|
+
flex-wrap: wrap;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
/* Remove buttons in filter rows */
|
|
394
|
+
#PRSP_Filter_Instances > div > button[type="button"] {
|
|
395
|
+
background: #B33030;
|
|
396
|
+
color: #fff;
|
|
397
|
+
border: none;
|
|
398
|
+
width: 1.6rem;
|
|
399
|
+
height: 1.6rem;
|
|
400
|
+
border-radius: 50%;
|
|
401
|
+
font-size: 0.85rem;
|
|
402
|
+
font-weight: 700;
|
|
403
|
+
cursor: pointer;
|
|
404
|
+
flex-shrink: 0;
|
|
405
|
+
padding: 0;
|
|
406
|
+
display: flex;
|
|
407
|
+
align-items: center;
|
|
408
|
+
justify-content: center;
|
|
409
|
+
line-height: 1;
|
|
410
|
+
}
|
|
411
|
+
#PRSP_Filter_Instances > div > button[type="button"]:hover {
|
|
412
|
+
background: #8B2020;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
/* Filter labels */
|
|
416
|
+
#PRSP_Filter_Instances span {
|
|
417
|
+
font-size: 0.85rem;
|
|
418
|
+
font-weight: 600;
|
|
419
|
+
color: #264653;
|
|
420
|
+
white-space: nowrap;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
/* Date inputs in filters */
|
|
424
|
+
#PRSP_Filter_Instances input[type="datetime-local"] {
|
|
425
|
+
border: 1px solid #D4C4A8;
|
|
426
|
+
background: #FFFCF7;
|
|
427
|
+
padding: 0.35rem 0.5rem;
|
|
428
|
+
border-radius: 4px;
|
|
429
|
+
font-size: 0.85rem;
|
|
430
|
+
color: #264653;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
/* Text inputs in filters */
|
|
434
|
+
#PRSP_Filter_Instances input[type="text"] {
|
|
435
|
+
border: 1px solid #D4C4A8;
|
|
436
|
+
background: #FFFCF7;
|
|
437
|
+
padding: 0.35rem 0.5rem;
|
|
438
|
+
border-radius: 4px;
|
|
439
|
+
font-size: 0.85rem;
|
|
440
|
+
color: #264653;
|
|
441
|
+
flex: 1;
|
|
442
|
+
min-width: 120px;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
/* Action button fieldsets */
|
|
446
|
+
#PRSP_Filter_Form > fieldset:nth-child(n+3) {
|
|
447
|
+
display: flex;
|
|
448
|
+
align-items: center;
|
|
449
|
+
gap: 0.5rem;
|
|
450
|
+
padding-top: 0.35rem;
|
|
451
|
+
}
|
|
452
|
+
#PRSP_Filter_Form > fieldset:nth-child(3) {
|
|
453
|
+
border-top: 1px solid #E8D9C0;
|
|
454
|
+
margin-top: 0.25rem;
|
|
455
|
+
padding-top: 0.6rem;
|
|
456
|
+
}
|
|
457
|
+
#PRSP_Filter_Button_Clear {
|
|
458
|
+
background: #264653 !important;
|
|
459
|
+
color: #FAEDCD !important;
|
|
460
|
+
}
|
|
461
|
+
#PRSP_Filter_Button_Clear:hover {
|
|
462
|
+
background: #1A3340 !important;
|
|
463
|
+
}
|
|
464
|
+
#PRSP_Filter_Button_Reset {
|
|
465
|
+
background: #D4A373 !important;
|
|
466
|
+
color: #fff !important;
|
|
467
|
+
}
|
|
468
|
+
#PRSP_Filter_Button_Reset:hover {
|
|
469
|
+
background: #B88A5C !important;
|
|
470
|
+
}
|
|
471
|
+
#PRSP_Filter_Button_Apply {
|
|
472
|
+
background: #E76F51 !important;
|
|
473
|
+
color: #fff !important;
|
|
474
|
+
}
|
|
475
|
+
#PRSP_Filter_Button_Apply:hover {
|
|
476
|
+
background: #C45A3E !important;
|
|
477
|
+
}
|
|
478
|
+
#PRSP_Filter_Button_Add {
|
|
479
|
+
background: #264653 !important;
|
|
480
|
+
color: #FAEDCD !important;
|
|
481
|
+
width: 2rem;
|
|
482
|
+
height: 2rem;
|
|
483
|
+
border-radius: 50% !important;
|
|
484
|
+
font-size: 1rem;
|
|
485
|
+
font-weight: 700;
|
|
486
|
+
display: flex !important;
|
|
487
|
+
align-items: center;
|
|
488
|
+
justify-content: center;
|
|
489
|
+
padding: 0 !important;
|
|
490
|
+
}
|
|
491
|
+
#PRSP_Filter_Button_Add:hover {
|
|
492
|
+
background: #1A3340 !important;
|
|
493
|
+
}
|
|
494
|
+
#PRSP_Filter_Button_Manage {
|
|
495
|
+
background: #264653 !important;
|
|
496
|
+
color: #FAEDCD !important;
|
|
497
|
+
}
|
|
498
|
+
#PRSP_Filter_Button_Manage:hover {
|
|
499
|
+
background: #1A3340 !important;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
/* Filter dropdowns/popovers */
|
|
503
|
+
#PRSP-SUBSET-Filters-Template-Add-Filter-Container {
|
|
504
|
+
background: #fff;
|
|
505
|
+
border: 1px solid #D4A373;
|
|
506
|
+
border-radius: 4px;
|
|
507
|
+
padding: 0.5rem;
|
|
508
|
+
margin-top: 0.25rem;
|
|
509
|
+
box-shadow: 0 2px 8px rgba(38,70,83,0.12);
|
|
510
|
+
}
|
|
511
|
+
#FilterPersistenceView-Container {
|
|
512
|
+
background: #fff;
|
|
513
|
+
border: 1px solid #D4A373;
|
|
514
|
+
border-radius: 4px;
|
|
515
|
+
padding: 0.5rem;
|
|
516
|
+
margin-top: 0.25rem;
|
|
517
|
+
box-shadow: 0 2px 8px rgba(38,70,83,0.12);
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
/* Pagination */
|
|
521
|
+
#RSP_Upper_Pagination_Container,
|
|
522
|
+
#RSP_Lower_Pagination_Container {
|
|
523
|
+
display: flex;
|
|
524
|
+
align-items: center;
|
|
525
|
+
justify-content: space-between;
|
|
526
|
+
padding: 0.5rem 0;
|
|
527
|
+
margin-bottom: 0.25rem;
|
|
528
|
+
font-size: 0.85rem;
|
|
529
|
+
color: #264653;
|
|
530
|
+
}
|
|
531
|
+
#RSP_Upper_Pagination_Container div,
|
|
532
|
+
#RSP_Lower_Pagination_Container div {
|
|
533
|
+
display: flex;
|
|
534
|
+
align-items: center;
|
|
535
|
+
gap: 0.35rem;
|
|
536
|
+
}
|
|
537
|
+
#RSP_Upper_Pagination_Container ul,
|
|
538
|
+
#RSP_Lower_Pagination_Container ul {
|
|
539
|
+
list-style: none;
|
|
540
|
+
margin: 0;
|
|
541
|
+
padding: 0;
|
|
542
|
+
display: flex;
|
|
543
|
+
gap: 0.25rem;
|
|
544
|
+
}
|
|
545
|
+
#RSP_Upper_Pagination_Container ul li a,
|
|
546
|
+
#RSP_Lower_Pagination_Container ul li a {
|
|
547
|
+
display: block;
|
|
548
|
+
padding: 0.35rem 0.75rem;
|
|
549
|
+
border: 1px solid #D4A373;
|
|
550
|
+
border-radius: 4px;
|
|
551
|
+
text-decoration: none;
|
|
552
|
+
color: #264653;
|
|
553
|
+
font-size: 0.8rem;
|
|
554
|
+
font-weight: 500;
|
|
555
|
+
transition: background 0.15s, color 0.15s;
|
|
556
|
+
}
|
|
557
|
+
#RSP_Upper_Pagination_Container ul li a:hover,
|
|
558
|
+
#RSP_Lower_Pagination_Container ul li a:hover {
|
|
559
|
+
background: #E76F51;
|
|
560
|
+
color: #fff;
|
|
561
|
+
border-color: #E76F51;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
/* Page Number Links */
|
|
565
|
+
a[class^="page-offset"] {
|
|
566
|
+
display: inline-block;
|
|
567
|
+
padding: 0.3rem 0.6rem;
|
|
568
|
+
border: 1px solid #D4A373;
|
|
569
|
+
border-radius: 4px;
|
|
570
|
+
text-decoration: none;
|
|
571
|
+
color: #264653;
|
|
572
|
+
font-size: 0.8rem;
|
|
573
|
+
font-weight: 500;
|
|
574
|
+
transition: background 0.15s, color 0.15s;
|
|
575
|
+
background: #fff;
|
|
576
|
+
}
|
|
577
|
+
a[class^="page-offset"]:hover {
|
|
578
|
+
background: #E76F51;
|
|
579
|
+
color: #fff;
|
|
580
|
+
border-color: #E76F51;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
/* List Table */
|
|
584
|
+
#PRSP_List_Table {
|
|
585
|
+
width: 100%;
|
|
586
|
+
border-collapse: collapse;
|
|
587
|
+
}
|
|
588
|
+
#PRSP_List_Table th {
|
|
589
|
+
background: #264653 !important;
|
|
590
|
+
color: #FAEDCD !important;
|
|
591
|
+
padding: 0.6rem 0.75rem !important;
|
|
592
|
+
border-bottom: none !important;
|
|
593
|
+
text-align: left;
|
|
594
|
+
font-size: 0.8rem;
|
|
595
|
+
font-weight: 600;
|
|
596
|
+
white-space: nowrap;
|
|
597
|
+
}
|
|
598
|
+
#PRSP_List_Table td {
|
|
599
|
+
padding: 0.6rem 0.75rem !important;
|
|
600
|
+
border-bottom: 1px solid #E8D9C0 !important;
|
|
601
|
+
font-size: 0.85rem;
|
|
602
|
+
background: #fff;
|
|
603
|
+
vertical-align: middle;
|
|
604
|
+
}
|
|
605
|
+
#PRSP_List_Table tr:nth-child(even) td {
|
|
606
|
+
background: #FFF9F0;
|
|
607
|
+
}
|
|
608
|
+
#PRSP_List_Table tr:hover td {
|
|
609
|
+
background: #FFF0E0;
|
|
610
|
+
}
|
|
611
|
+
#PRSP_List_Table img {
|
|
612
|
+
max-width: 80px;
|
|
613
|
+
max-height: 100px;
|
|
614
|
+
border-radius: 3px;
|
|
615
|
+
border: 1px solid #E8D9C0;
|
|
616
|
+
}
|
|
617
|
+
#PRSP_List_Table a {
|
|
618
|
+
color: #E76F51;
|
|
619
|
+
font-weight: 600;
|
|
620
|
+
text-decoration: none;
|
|
621
|
+
}
|
|
622
|
+
#PRSP_List_Table a:hover {
|
|
623
|
+
color: #C45A3E;
|
|
624
|
+
text-decoration: underline;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
/* List container */
|
|
628
|
+
#PRSP_List_Container {
|
|
629
|
+
margin-bottom: 0.5rem;
|
|
630
|
+
}
|
|
631
|
+
#PRSP_List_Container > section {
|
|
632
|
+
border: 1px solid #D4A373;
|
|
633
|
+
border-top: 4px solid #E76F51;
|
|
634
|
+
border-radius: 6px;
|
|
635
|
+
overflow: hidden;
|
|
636
|
+
box-shadow: 0 2px 8px rgba(38,70,83,0.08);
|
|
637
|
+
margin-bottom: 0.5rem;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
/* Record View Tabs */
|
|
641
|
+
#PRSP-Read-Tabs-Container {
|
|
642
|
+
margin-top: 0.5rem;
|
|
643
|
+
}
|
|
644
|
+
#PRSP-Read-Tab-Nav {
|
|
645
|
+
display: flex;
|
|
646
|
+
gap: 0;
|
|
647
|
+
border-bottom: 2px solid #D4A373;
|
|
648
|
+
margin-bottom: 0;
|
|
649
|
+
}
|
|
650
|
+
.psrs-tab {
|
|
651
|
+
padding: 0.55rem 1.25rem;
|
|
652
|
+
font-size: 0.9rem;
|
|
653
|
+
font-weight: 500;
|
|
654
|
+
color: #264653;
|
|
655
|
+
cursor: pointer;
|
|
656
|
+
border: 1px solid transparent;
|
|
657
|
+
border-bottom: none;
|
|
658
|
+
border-radius: 4px 4px 0 0;
|
|
659
|
+
margin-bottom: -2px;
|
|
660
|
+
transition: background 0.15s, color 0.15s;
|
|
661
|
+
}
|
|
662
|
+
.psrs-tab:hover {
|
|
663
|
+
background: #FFF9F0;
|
|
664
|
+
}
|
|
665
|
+
.psrs-tab.is-active {
|
|
666
|
+
background: #264653;
|
|
667
|
+
color: #FAEDCD;
|
|
668
|
+
border-color: #264653;
|
|
669
|
+
}
|
|
670
|
+
.psrs-tab-body {
|
|
671
|
+
display: none;
|
|
672
|
+
padding: 1rem 0 0;
|
|
673
|
+
}
|
|
674
|
+
.psrs-tab-body.is-active {
|
|
675
|
+
display: block;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
/* Record View Content */
|
|
679
|
+
#PRSP_Container h2 {
|
|
680
|
+
font-size: 1.1rem;
|
|
681
|
+
margin: 0.75rem 0 0.5rem;
|
|
682
|
+
color: #264653;
|
|
683
|
+
}
|
|
684
|
+
#PRSP_Container h3 {
|
|
685
|
+
font-size: 0.95rem;
|
|
686
|
+
margin: 0.5rem 0 0.35rem;
|
|
687
|
+
color: #D4A373;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
/* Utility */
|
|
691
|
+
.is-hidden {
|
|
692
|
+
display: none;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
/* -- Responsive Styles (Media Queries) ------------------------------------- */
|
|
696
|
+
|
|
697
|
+
@media (min-width: 48em) {
|
|
698
|
+
|
|
699
|
+
.header,
|
|
700
|
+
.content {
|
|
701
|
+
padding-left: 2em;
|
|
702
|
+
padding-right: 2em;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
#layout {
|
|
706
|
+
padding-left: 200px; /* left col width "#menu" */
|
|
707
|
+
left: 0;
|
|
708
|
+
}
|
|
709
|
+
#menu {
|
|
710
|
+
left: 200px;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.menu-link {
|
|
714
|
+
position: fixed;
|
|
715
|
+
left: 200px;
|
|
716
|
+
display: none;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
#layout.active .menu-link {
|
|
720
|
+
left: 200px;
|
|
721
|
+
}
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
@media (max-width: 48em) {
|
|
725
|
+
#layout.active {
|
|
726
|
+
position: relative;
|
|
727
|
+
left: 200px;
|
|
728
|
+
}
|
|
729
|
+
}
|