tina4ruby 3.13.81 → 3.13.82
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +35 -2
- data/README.md +4 -4
- data/lib/tina4/background.rb +21 -2
- data/lib/tina4/cli.rb +141 -14
- data/lib/tina4/mqtt.rb +800 -0
- data/lib/tina4/mqtt_message.rb +78 -0
- data/lib/tina4/public/css/tina4.css +56 -130
- data/lib/tina4/public/css/tina4.min.css +1 -1
- data/lib/tina4/rack_app.rb +13 -0
- data/lib/tina4/router.rb +13 -2
- data/lib/tina4/scss/tina4css/_pagination.scss +63 -0
- data/lib/tina4/scss/tina4css/_utilities.scss +11 -0
- data/lib/tina4/scss/tina4css/tina4.scss +1 -0
- data/lib/tina4/scss_compiler.rb +48 -3
- data/lib/tina4/test_client.rb +39 -52
- data/lib/tina4/version.rb +1 -1
- data/lib/tina4.rb +16 -1
- metadata +6 -3
- /data/lib/tina4/{sql_translation.rb → sql_translator.rb} +0 -0
|
@@ -46,7 +46,6 @@ a {
|
|
|
46
46
|
color: #4a90d9;
|
|
47
47
|
text-decoration: none;
|
|
48
48
|
}
|
|
49
|
-
|
|
50
49
|
a:hover {
|
|
51
50
|
color: #256ab1;
|
|
52
51
|
text-decoration: underline;
|
|
@@ -74,7 +73,7 @@ button, select {
|
|
|
74
73
|
text-transform: none;
|
|
75
74
|
}
|
|
76
75
|
|
|
77
|
-
button, [type=
|
|
76
|
+
button, [type=button], [type=reset], [type=submit] {
|
|
78
77
|
-webkit-appearance: button;
|
|
79
78
|
cursor: pointer;
|
|
80
79
|
}
|
|
@@ -170,7 +169,6 @@ pre {
|
|
|
170
169
|
.list-inline-item {
|
|
171
170
|
display: inline-block;
|
|
172
171
|
}
|
|
173
|
-
|
|
174
172
|
.list-inline-item:not(:last-child) {
|
|
175
173
|
margin-right: 0.5rem;
|
|
176
174
|
}
|
|
@@ -178,8 +176,8 @@ pre {
|
|
|
178
176
|
.container,
|
|
179
177
|
.container-fluid {
|
|
180
178
|
width: 100%;
|
|
181
|
-
padding-right:
|
|
182
|
-
padding-left:
|
|
179
|
+
padding-right: 0.75rem;
|
|
180
|
+
padding-left: 0.75rem;
|
|
183
181
|
margin-right: auto;
|
|
184
182
|
margin-left: auto;
|
|
185
183
|
}
|
|
@@ -189,44 +187,38 @@ pre {
|
|
|
189
187
|
max-width: 540px;
|
|
190
188
|
}
|
|
191
189
|
}
|
|
192
|
-
|
|
193
190
|
@media (min-width: 768px) {
|
|
194
191
|
.container {
|
|
195
192
|
max-width: 720px;
|
|
196
193
|
}
|
|
197
194
|
}
|
|
198
|
-
|
|
199
195
|
@media (min-width: 992px) {
|
|
200
196
|
.container {
|
|
201
197
|
max-width: 960px;
|
|
202
198
|
}
|
|
203
199
|
}
|
|
204
|
-
|
|
205
200
|
@media (min-width: 1200px) {
|
|
206
201
|
.container {
|
|
207
202
|
max-width: 1140px;
|
|
208
203
|
}
|
|
209
204
|
}
|
|
210
|
-
|
|
211
205
|
@media (min-width: 1400px) {
|
|
212
206
|
.container {
|
|
213
207
|
max-width: 1320px;
|
|
214
208
|
}
|
|
215
209
|
}
|
|
216
|
-
|
|
217
210
|
.row {
|
|
218
211
|
display: flex;
|
|
219
212
|
flex-wrap: wrap;
|
|
220
|
-
margin-right:
|
|
221
|
-
margin-left:
|
|
213
|
+
margin-right: -0.75rem;
|
|
214
|
+
margin-left: -0.75rem;
|
|
222
215
|
}
|
|
223
|
-
|
|
224
216
|
.row > * {
|
|
225
217
|
flex-shrink: 0;
|
|
226
218
|
width: 100%;
|
|
227
219
|
max-width: 100%;
|
|
228
|
-
padding-right:
|
|
229
|
-
padding-left:
|
|
220
|
+
padding-right: 0.75rem;
|
|
221
|
+
padding-left: 0.75rem;
|
|
230
222
|
}
|
|
231
223
|
|
|
232
224
|
.col {
|
|
@@ -235,12 +227,12 @@ pre {
|
|
|
235
227
|
|
|
236
228
|
.col-1 {
|
|
237
229
|
flex: 0 0 auto;
|
|
238
|
-
width: 8.
|
|
230
|
+
width: 8.3333333333%;
|
|
239
231
|
}
|
|
240
232
|
|
|
241
233
|
.col-2 {
|
|
242
234
|
flex: 0 0 auto;
|
|
243
|
-
width: 16.
|
|
235
|
+
width: 16.6666666667%;
|
|
244
236
|
}
|
|
245
237
|
|
|
246
238
|
.col-3 {
|
|
@@ -250,12 +242,12 @@ pre {
|
|
|
250
242
|
|
|
251
243
|
.col-4 {
|
|
252
244
|
flex: 0 0 auto;
|
|
253
|
-
width: 33.
|
|
245
|
+
width: 33.3333333333%;
|
|
254
246
|
}
|
|
255
247
|
|
|
256
248
|
.col-5 {
|
|
257
249
|
flex: 0 0 auto;
|
|
258
|
-
width: 41.
|
|
250
|
+
width: 41.6666666667%;
|
|
259
251
|
}
|
|
260
252
|
|
|
261
253
|
.col-6 {
|
|
@@ -265,12 +257,12 @@ pre {
|
|
|
265
257
|
|
|
266
258
|
.col-7 {
|
|
267
259
|
flex: 0 0 auto;
|
|
268
|
-
width: 58.
|
|
260
|
+
width: 58.3333333333%;
|
|
269
261
|
}
|
|
270
262
|
|
|
271
263
|
.col-8 {
|
|
272
264
|
flex: 0 0 auto;
|
|
273
|
-
width: 66.
|
|
265
|
+
width: 66.6666666667%;
|
|
274
266
|
}
|
|
275
267
|
|
|
276
268
|
.col-9 {
|
|
@@ -280,12 +272,12 @@ pre {
|
|
|
280
272
|
|
|
281
273
|
.col-10 {
|
|
282
274
|
flex: 0 0 auto;
|
|
283
|
-
width: 83.
|
|
275
|
+
width: 83.3333333333%;
|
|
284
276
|
}
|
|
285
277
|
|
|
286
278
|
.col-11 {
|
|
287
279
|
flex: 0 0 auto;
|
|
288
|
-
width: 91.
|
|
280
|
+
width: 91.6666666667%;
|
|
289
281
|
}
|
|
290
282
|
|
|
291
283
|
.col-12 {
|
|
@@ -294,11 +286,11 @@ pre {
|
|
|
294
286
|
}
|
|
295
287
|
|
|
296
288
|
.offset-1 {
|
|
297
|
-
margin-left: 8.
|
|
289
|
+
margin-left: 8.3333333333%;
|
|
298
290
|
}
|
|
299
291
|
|
|
300
292
|
.offset-2 {
|
|
301
|
-
margin-left: 16.
|
|
293
|
+
margin-left: 16.6666666667%;
|
|
302
294
|
}
|
|
303
295
|
|
|
304
296
|
.offset-3 {
|
|
@@ -306,7 +298,7 @@ pre {
|
|
|
306
298
|
}
|
|
307
299
|
|
|
308
300
|
.offset-4 {
|
|
309
|
-
margin-left: 33.
|
|
301
|
+
margin-left: 33.3333333333%;
|
|
310
302
|
}
|
|
311
303
|
|
|
312
304
|
.offset-0 {
|
|
@@ -319,11 +311,11 @@ pre {
|
|
|
319
311
|
}
|
|
320
312
|
.col-sm-1 {
|
|
321
313
|
flex: 0 0 auto;
|
|
322
|
-
width: 8.
|
|
314
|
+
width: 8.3333333333%;
|
|
323
315
|
}
|
|
324
316
|
.col-sm-2 {
|
|
325
317
|
flex: 0 0 auto;
|
|
326
|
-
width: 16.
|
|
318
|
+
width: 16.6666666667%;
|
|
327
319
|
}
|
|
328
320
|
.col-sm-3 {
|
|
329
321
|
flex: 0 0 auto;
|
|
@@ -331,11 +323,11 @@ pre {
|
|
|
331
323
|
}
|
|
332
324
|
.col-sm-4 {
|
|
333
325
|
flex: 0 0 auto;
|
|
334
|
-
width: 33.
|
|
326
|
+
width: 33.3333333333%;
|
|
335
327
|
}
|
|
336
328
|
.col-sm-5 {
|
|
337
329
|
flex: 0 0 auto;
|
|
338
|
-
width: 41.
|
|
330
|
+
width: 41.6666666667%;
|
|
339
331
|
}
|
|
340
332
|
.col-sm-6 {
|
|
341
333
|
flex: 0 0 auto;
|
|
@@ -343,11 +335,11 @@ pre {
|
|
|
343
335
|
}
|
|
344
336
|
.col-sm-7 {
|
|
345
337
|
flex: 0 0 auto;
|
|
346
|
-
width: 58.
|
|
338
|
+
width: 58.3333333333%;
|
|
347
339
|
}
|
|
348
340
|
.col-sm-8 {
|
|
349
341
|
flex: 0 0 auto;
|
|
350
|
-
width: 66.
|
|
342
|
+
width: 66.6666666667%;
|
|
351
343
|
}
|
|
352
344
|
.col-sm-9 {
|
|
353
345
|
flex: 0 0 auto;
|
|
@@ -355,11 +347,11 @@ pre {
|
|
|
355
347
|
}
|
|
356
348
|
.col-sm-10 {
|
|
357
349
|
flex: 0 0 auto;
|
|
358
|
-
width: 83.
|
|
350
|
+
width: 83.3333333333%;
|
|
359
351
|
}
|
|
360
352
|
.col-sm-11 {
|
|
361
353
|
flex: 0 0 auto;
|
|
362
|
-
width: 91.
|
|
354
|
+
width: 91.6666666667%;
|
|
363
355
|
}
|
|
364
356
|
.col-sm-12 {
|
|
365
357
|
flex: 0 0 auto;
|
|
@@ -369,18 +361,17 @@ pre {
|
|
|
369
361
|
margin-left: 0;
|
|
370
362
|
}
|
|
371
363
|
}
|
|
372
|
-
|
|
373
364
|
@media (min-width: 768px) {
|
|
374
365
|
.col-md {
|
|
375
366
|
flex: 1 0 0%;
|
|
376
367
|
}
|
|
377
368
|
.col-md-1 {
|
|
378
369
|
flex: 0 0 auto;
|
|
379
|
-
width: 8.
|
|
370
|
+
width: 8.3333333333%;
|
|
380
371
|
}
|
|
381
372
|
.col-md-2 {
|
|
382
373
|
flex: 0 0 auto;
|
|
383
|
-
width: 16.
|
|
374
|
+
width: 16.6666666667%;
|
|
384
375
|
}
|
|
385
376
|
.col-md-3 {
|
|
386
377
|
flex: 0 0 auto;
|
|
@@ -388,11 +379,11 @@ pre {
|
|
|
388
379
|
}
|
|
389
380
|
.col-md-4 {
|
|
390
381
|
flex: 0 0 auto;
|
|
391
|
-
width: 33.
|
|
382
|
+
width: 33.3333333333%;
|
|
392
383
|
}
|
|
393
384
|
.col-md-5 {
|
|
394
385
|
flex: 0 0 auto;
|
|
395
|
-
width: 41.
|
|
386
|
+
width: 41.6666666667%;
|
|
396
387
|
}
|
|
397
388
|
.col-md-6 {
|
|
398
389
|
flex: 0 0 auto;
|
|
@@ -400,11 +391,11 @@ pre {
|
|
|
400
391
|
}
|
|
401
392
|
.col-md-7 {
|
|
402
393
|
flex: 0 0 auto;
|
|
403
|
-
width: 58.
|
|
394
|
+
width: 58.3333333333%;
|
|
404
395
|
}
|
|
405
396
|
.col-md-8 {
|
|
406
397
|
flex: 0 0 auto;
|
|
407
|
-
width: 66.
|
|
398
|
+
width: 66.6666666667%;
|
|
408
399
|
}
|
|
409
400
|
.col-md-9 {
|
|
410
401
|
flex: 0 0 auto;
|
|
@@ -412,11 +403,11 @@ pre {
|
|
|
412
403
|
}
|
|
413
404
|
.col-md-10 {
|
|
414
405
|
flex: 0 0 auto;
|
|
415
|
-
width: 83.
|
|
406
|
+
width: 83.3333333333%;
|
|
416
407
|
}
|
|
417
408
|
.col-md-11 {
|
|
418
409
|
flex: 0 0 auto;
|
|
419
|
-
width: 91.
|
|
410
|
+
width: 91.6666666667%;
|
|
420
411
|
}
|
|
421
412
|
.col-md-12 {
|
|
422
413
|
flex: 0 0 auto;
|
|
@@ -426,18 +417,17 @@ pre {
|
|
|
426
417
|
margin-left: 0;
|
|
427
418
|
}
|
|
428
419
|
}
|
|
429
|
-
|
|
430
420
|
@media (min-width: 992px) {
|
|
431
421
|
.col-lg {
|
|
432
422
|
flex: 1 0 0%;
|
|
433
423
|
}
|
|
434
424
|
.col-lg-1 {
|
|
435
425
|
flex: 0 0 auto;
|
|
436
|
-
width: 8.
|
|
426
|
+
width: 8.3333333333%;
|
|
437
427
|
}
|
|
438
428
|
.col-lg-2 {
|
|
439
429
|
flex: 0 0 auto;
|
|
440
|
-
width: 16.
|
|
430
|
+
width: 16.6666666667%;
|
|
441
431
|
}
|
|
442
432
|
.col-lg-3 {
|
|
443
433
|
flex: 0 0 auto;
|
|
@@ -445,11 +435,11 @@ pre {
|
|
|
445
435
|
}
|
|
446
436
|
.col-lg-4 {
|
|
447
437
|
flex: 0 0 auto;
|
|
448
|
-
width: 33.
|
|
438
|
+
width: 33.3333333333%;
|
|
449
439
|
}
|
|
450
440
|
.col-lg-5 {
|
|
451
441
|
flex: 0 0 auto;
|
|
452
|
-
width: 41.
|
|
442
|
+
width: 41.6666666667%;
|
|
453
443
|
}
|
|
454
444
|
.col-lg-6 {
|
|
455
445
|
flex: 0 0 auto;
|
|
@@ -457,11 +447,11 @@ pre {
|
|
|
457
447
|
}
|
|
458
448
|
.col-lg-7 {
|
|
459
449
|
flex: 0 0 auto;
|
|
460
|
-
width: 58.
|
|
450
|
+
width: 58.3333333333%;
|
|
461
451
|
}
|
|
462
452
|
.col-lg-8 {
|
|
463
453
|
flex: 0 0 auto;
|
|
464
|
-
width: 66.
|
|
454
|
+
width: 66.6666666667%;
|
|
465
455
|
}
|
|
466
456
|
.col-lg-9 {
|
|
467
457
|
flex: 0 0 auto;
|
|
@@ -469,11 +459,11 @@ pre {
|
|
|
469
459
|
}
|
|
470
460
|
.col-lg-10 {
|
|
471
461
|
flex: 0 0 auto;
|
|
472
|
-
width: 83.
|
|
462
|
+
width: 83.3333333333%;
|
|
473
463
|
}
|
|
474
464
|
.col-lg-11 {
|
|
475
465
|
flex: 0 0 auto;
|
|
476
|
-
width: 91.
|
|
466
|
+
width: 91.6666666667%;
|
|
477
467
|
}
|
|
478
468
|
.col-lg-12 {
|
|
479
469
|
flex: 0 0 auto;
|
|
@@ -483,18 +473,17 @@ pre {
|
|
|
483
473
|
margin-left: 0;
|
|
484
474
|
}
|
|
485
475
|
}
|
|
486
|
-
|
|
487
476
|
@media (min-width: 1200px) {
|
|
488
477
|
.col-xl {
|
|
489
478
|
flex: 1 0 0%;
|
|
490
479
|
}
|
|
491
480
|
.col-xl-1 {
|
|
492
481
|
flex: 0 0 auto;
|
|
493
|
-
width: 8.
|
|
482
|
+
width: 8.3333333333%;
|
|
494
483
|
}
|
|
495
484
|
.col-xl-2 {
|
|
496
485
|
flex: 0 0 auto;
|
|
497
|
-
width: 16.
|
|
486
|
+
width: 16.6666666667%;
|
|
498
487
|
}
|
|
499
488
|
.col-xl-3 {
|
|
500
489
|
flex: 0 0 auto;
|
|
@@ -502,11 +491,11 @@ pre {
|
|
|
502
491
|
}
|
|
503
492
|
.col-xl-4 {
|
|
504
493
|
flex: 0 0 auto;
|
|
505
|
-
width: 33.
|
|
494
|
+
width: 33.3333333333%;
|
|
506
495
|
}
|
|
507
496
|
.col-xl-5 {
|
|
508
497
|
flex: 0 0 auto;
|
|
509
|
-
width: 41.
|
|
498
|
+
width: 41.6666666667%;
|
|
510
499
|
}
|
|
511
500
|
.col-xl-6 {
|
|
512
501
|
flex: 0 0 auto;
|
|
@@ -514,11 +503,11 @@ pre {
|
|
|
514
503
|
}
|
|
515
504
|
.col-xl-7 {
|
|
516
505
|
flex: 0 0 auto;
|
|
517
|
-
width: 58.
|
|
506
|
+
width: 58.3333333333%;
|
|
518
507
|
}
|
|
519
508
|
.col-xl-8 {
|
|
520
509
|
flex: 0 0 auto;
|
|
521
|
-
width: 66.
|
|
510
|
+
width: 66.6666666667%;
|
|
522
511
|
}
|
|
523
512
|
.col-xl-9 {
|
|
524
513
|
flex: 0 0 auto;
|
|
@@ -526,11 +515,11 @@ pre {
|
|
|
526
515
|
}
|
|
527
516
|
.col-xl-10 {
|
|
528
517
|
flex: 0 0 auto;
|
|
529
|
-
width: 83.
|
|
518
|
+
width: 83.3333333333%;
|
|
530
519
|
}
|
|
531
520
|
.col-xl-11 {
|
|
532
521
|
flex: 0 0 auto;
|
|
533
|
-
width: 91.
|
|
522
|
+
width: 91.6666666667%;
|
|
534
523
|
}
|
|
535
524
|
.col-xl-12 {
|
|
536
525
|
flex: 0 0 auto;
|
|
@@ -540,7 +529,6 @@ pre {
|
|
|
540
529
|
margin-left: 0;
|
|
541
530
|
}
|
|
542
531
|
}
|
|
543
|
-
|
|
544
532
|
.justify-start {
|
|
545
533
|
justify-content: flex-start;
|
|
546
534
|
}
|
|
@@ -590,7 +578,6 @@ pre {
|
|
|
590
578
|
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
591
579
|
text-decoration: none;
|
|
592
580
|
}
|
|
593
|
-
|
|
594
581
|
.btn:disabled, .btn.disabled {
|
|
595
582
|
pointer-events: none;
|
|
596
583
|
opacity: 0.65;
|
|
@@ -601,7 +588,6 @@ pre {
|
|
|
601
588
|
background-color: #4a90d9;
|
|
602
589
|
border-color: #4a90d9;
|
|
603
590
|
}
|
|
604
|
-
|
|
605
591
|
.btn-primary:hover {
|
|
606
592
|
background-color: #2b7bcf;
|
|
607
593
|
border-color: #2a76c6;
|
|
@@ -612,7 +598,6 @@ pre {
|
|
|
612
598
|
background-color: #6c757d;
|
|
613
599
|
border-color: #6c757d;
|
|
614
600
|
}
|
|
615
|
-
|
|
616
601
|
.btn-secondary:hover {
|
|
617
602
|
background-color: #596167;
|
|
618
603
|
border-color: #545b62;
|
|
@@ -623,7 +608,6 @@ pre {
|
|
|
623
608
|
background-color: #28a745;
|
|
624
609
|
border-color: #28a745;
|
|
625
610
|
}
|
|
626
|
-
|
|
627
611
|
.btn-success:hover {
|
|
628
612
|
background-color: #208637;
|
|
629
613
|
border-color: #1e7e34;
|
|
@@ -634,7 +618,6 @@ pre {
|
|
|
634
618
|
background-color: #dc3545;
|
|
635
619
|
border-color: #dc3545;
|
|
636
620
|
}
|
|
637
|
-
|
|
638
621
|
.btn-danger:hover {
|
|
639
622
|
background-color: #c62232;
|
|
640
623
|
border-color: #bd2130;
|
|
@@ -645,7 +628,6 @@ pre {
|
|
|
645
628
|
background-color: #ffc107;
|
|
646
629
|
border-color: #ffc107;
|
|
647
630
|
}
|
|
648
|
-
|
|
649
631
|
.btn-warning:hover {
|
|
650
632
|
background-color: #dda600;
|
|
651
633
|
border-color: #d39e00;
|
|
@@ -656,7 +638,6 @@ pre {
|
|
|
656
638
|
background-color: #17a2b8;
|
|
657
639
|
border-color: #17a2b8;
|
|
658
640
|
}
|
|
659
|
-
|
|
660
641
|
.btn-info:hover {
|
|
661
642
|
background-color: #128294;
|
|
662
643
|
border-color: #117a8b;
|
|
@@ -667,7 +648,6 @@ pre {
|
|
|
667
648
|
background-color: #f8f9fa;
|
|
668
649
|
border-color: #f8f9fa;
|
|
669
650
|
}
|
|
670
|
-
|
|
671
651
|
.btn-light:hover {
|
|
672
652
|
background-color: #e0e5e9;
|
|
673
653
|
border-color: #dae0e5;
|
|
@@ -678,7 +658,6 @@ pre {
|
|
|
678
658
|
background-color: #212529;
|
|
679
659
|
border-color: #212529;
|
|
680
660
|
}
|
|
681
|
-
|
|
682
661
|
.btn-dark:hover {
|
|
683
662
|
background-color: #0f1112;
|
|
684
663
|
border-color: #0a0c0d;
|
|
@@ -689,7 +668,6 @@ pre {
|
|
|
689
668
|
border-color: #4a90d9;
|
|
690
669
|
background-color: transparent;
|
|
691
670
|
}
|
|
692
|
-
|
|
693
671
|
.btn-outline-primary:hover {
|
|
694
672
|
color: #fff;
|
|
695
673
|
background-color: #4a90d9;
|
|
@@ -700,7 +678,6 @@ pre {
|
|
|
700
678
|
border-color: #6c757d;
|
|
701
679
|
background-color: transparent;
|
|
702
680
|
}
|
|
703
|
-
|
|
704
681
|
.btn-outline-secondary:hover {
|
|
705
682
|
color: #fff;
|
|
706
683
|
background-color: #6c757d;
|
|
@@ -711,7 +688,6 @@ pre {
|
|
|
711
688
|
border-color: #28a745;
|
|
712
689
|
background-color: transparent;
|
|
713
690
|
}
|
|
714
|
-
|
|
715
691
|
.btn-outline-success:hover {
|
|
716
692
|
color: #fff;
|
|
717
693
|
background-color: #28a745;
|
|
@@ -722,7 +698,6 @@ pre {
|
|
|
722
698
|
border-color: #dc3545;
|
|
723
699
|
background-color: transparent;
|
|
724
700
|
}
|
|
725
|
-
|
|
726
701
|
.btn-outline-danger:hover {
|
|
727
702
|
color: #fff;
|
|
728
703
|
background-color: #dc3545;
|
|
@@ -733,7 +708,6 @@ pre {
|
|
|
733
708
|
border-color: #ffc107;
|
|
734
709
|
background-color: transparent;
|
|
735
710
|
}
|
|
736
|
-
|
|
737
711
|
.btn-outline-warning:hover {
|
|
738
712
|
color: #212529;
|
|
739
713
|
background-color: #ffc107;
|
|
@@ -744,7 +718,6 @@ pre {
|
|
|
744
718
|
border-color: #17a2b8;
|
|
745
719
|
background-color: transparent;
|
|
746
720
|
}
|
|
747
|
-
|
|
748
721
|
.btn-outline-info:hover {
|
|
749
722
|
color: #fff;
|
|
750
723
|
background-color: #17a2b8;
|
|
@@ -755,7 +728,6 @@ pre {
|
|
|
755
728
|
border-color: #f8f9fa;
|
|
756
729
|
background-color: transparent;
|
|
757
730
|
}
|
|
758
|
-
|
|
759
731
|
.btn-outline-light:hover {
|
|
760
732
|
color: #212529;
|
|
761
733
|
background-color: #f8f9fa;
|
|
@@ -766,7 +738,6 @@ pre {
|
|
|
766
738
|
border-color: #212529;
|
|
767
739
|
background-color: transparent;
|
|
768
740
|
}
|
|
769
|
-
|
|
770
741
|
.btn-outline-dark:hover {
|
|
771
742
|
color: #fff;
|
|
772
743
|
background-color: #212529;
|
|
@@ -814,7 +785,6 @@ pre {
|
|
|
814
785
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
815
786
|
appearance: none;
|
|
816
787
|
}
|
|
817
|
-
|
|
818
788
|
.form-control:focus {
|
|
819
789
|
color: #212529;
|
|
820
790
|
background-color: #fff;
|
|
@@ -822,12 +792,10 @@ pre {
|
|
|
822
792
|
outline: 0;
|
|
823
793
|
box-shadow: 0 0 0 0.2rem rgba(74, 144, 217, 0.25);
|
|
824
794
|
}
|
|
825
|
-
|
|
826
795
|
.form-control::placeholder {
|
|
827
796
|
color: #6c757d;
|
|
828
797
|
opacity: 1;
|
|
829
798
|
}
|
|
830
|
-
|
|
831
799
|
.form-control:disabled {
|
|
832
800
|
background-color: #f8f9fa;
|
|
833
801
|
opacity: 1;
|
|
@@ -851,7 +819,6 @@ textarea.form-control {
|
|
|
851
819
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
852
820
|
appearance: none;
|
|
853
821
|
}
|
|
854
|
-
|
|
855
822
|
.form-select:focus {
|
|
856
823
|
border-color: #b3d1ef;
|
|
857
824
|
outline: 0;
|
|
@@ -875,20 +842,16 @@ textarea.form-control {
|
|
|
875
842
|
background-color: #fff;
|
|
876
843
|
border: 1px solid rgba(0, 0, 0, 0.25);
|
|
877
844
|
}
|
|
878
|
-
|
|
879
|
-
.form-check-input[type="checkbox"] {
|
|
845
|
+
.form-check-input[type=checkbox] {
|
|
880
846
|
border-radius: 0.25em;
|
|
881
847
|
}
|
|
882
|
-
|
|
883
|
-
.form-check-input[type="radio"] {
|
|
848
|
+
.form-check-input[type=radio] {
|
|
884
849
|
border-radius: 50%;
|
|
885
850
|
}
|
|
886
|
-
|
|
887
851
|
.form-check-input:checked {
|
|
888
852
|
background-color: #4a90d9;
|
|
889
853
|
border-color: #4a90d9;
|
|
890
854
|
}
|
|
891
|
-
|
|
892
855
|
.form-check-input:focus {
|
|
893
856
|
border-color: #b3d1ef;
|
|
894
857
|
outline: 0;
|
|
@@ -902,7 +865,6 @@ textarea.form-control {
|
|
|
902
865
|
.is-valid {
|
|
903
866
|
border-color: #28a745 !important;
|
|
904
867
|
}
|
|
905
|
-
|
|
906
868
|
.is-valid:focus {
|
|
907
869
|
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
|
|
908
870
|
}
|
|
@@ -910,7 +872,6 @@ textarea.form-control {
|
|
|
910
872
|
.is-invalid {
|
|
911
873
|
border-color: #dc3545 !important;
|
|
912
874
|
}
|
|
913
|
-
|
|
914
875
|
.is-invalid:focus {
|
|
915
876
|
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
|
|
916
877
|
}
|
|
@@ -943,7 +904,6 @@ textarea.form-control {
|
|
|
943
904
|
align-items: stretch;
|
|
944
905
|
width: 100%;
|
|
945
906
|
}
|
|
946
|
-
|
|
947
907
|
.input-group > .form-control,
|
|
948
908
|
.input-group > .form-select {
|
|
949
909
|
position: relative;
|
|
@@ -984,9 +944,8 @@ textarea.form-control {
|
|
|
984
944
|
background-color: rgba(0, 0, 0, 0.03);
|
|
985
945
|
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
|
986
946
|
}
|
|
987
|
-
|
|
988
947
|
.card-header:first-child {
|
|
989
|
-
border-radius: calc(
|
|
948
|
+
border-radius: calc(0.5rem - 1px) calc(0.5rem - 1px) 0 0;
|
|
990
949
|
}
|
|
991
950
|
|
|
992
951
|
.card-body {
|
|
@@ -999,9 +958,8 @@ textarea.form-control {
|
|
|
999
958
|
background-color: rgba(0, 0, 0, 0.03);
|
|
1000
959
|
border-top: 1px solid rgba(0, 0, 0, 0.125);
|
|
1001
960
|
}
|
|
1002
|
-
|
|
1003
961
|
.card-footer:last-child {
|
|
1004
|
-
border-radius: 0 0 calc(
|
|
962
|
+
border-radius: 0 0 calc(0.5rem - 1px) calc(0.5rem - 1px);
|
|
1005
963
|
}
|
|
1006
964
|
|
|
1007
965
|
.card-title {
|
|
@@ -1015,8 +973,8 @@ textarea.form-control {
|
|
|
1015
973
|
|
|
1016
974
|
.card-img-top {
|
|
1017
975
|
width: 100%;
|
|
1018
|
-
border-top-left-radius: calc(
|
|
1019
|
-
border-top-right-radius: calc(
|
|
976
|
+
border-top-left-radius: calc(0.5rem - 1px);
|
|
977
|
+
border-top-right-radius: calc(0.5rem - 1px);
|
|
1020
978
|
}
|
|
1021
979
|
|
|
1022
980
|
.nav {
|
|
@@ -1034,17 +992,14 @@ textarea.form-control {
|
|
|
1034
992
|
text-decoration: none;
|
|
1035
993
|
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
|
|
1036
994
|
}
|
|
1037
|
-
|
|
1038
995
|
.nav-link:hover, .nav-link:focus {
|
|
1039
996
|
color: #256ab1;
|
|
1040
997
|
}
|
|
1041
|
-
|
|
1042
998
|
.nav-link.disabled {
|
|
1043
999
|
color: #6c757d;
|
|
1044
1000
|
pointer-events: none;
|
|
1045
1001
|
cursor: default;
|
|
1046
1002
|
}
|
|
1047
|
-
|
|
1048
1003
|
.nav-link.active {
|
|
1049
1004
|
color: #4a90d9;
|
|
1050
1005
|
font-weight: 700;
|
|
@@ -1069,7 +1024,6 @@ textarea.form-control {
|
|
|
1069
1024
|
text-decoration: none;
|
|
1070
1025
|
white-space: nowrap;
|
|
1071
1026
|
}
|
|
1072
|
-
|
|
1073
1027
|
.navbar-brand:hover {
|
|
1074
1028
|
color: inherit;
|
|
1075
1029
|
opacity: 0.8;
|
|
@@ -1082,7 +1036,6 @@ textarea.form-control {
|
|
|
1082
1036
|
margin-bottom: 0;
|
|
1083
1037
|
list-style: none;
|
|
1084
1038
|
}
|
|
1085
|
-
|
|
1086
1039
|
.navbar-nav .nav-link {
|
|
1087
1040
|
padding-right: 0.5rem;
|
|
1088
1041
|
padding-left: 0.5rem;
|
|
@@ -1097,7 +1050,6 @@ textarea.form-control {
|
|
|
1097
1050
|
border-radius: 0.25rem;
|
|
1098
1051
|
cursor: pointer;
|
|
1099
1052
|
}
|
|
1100
|
-
|
|
1101
1053
|
.navbar-toggler:focus {
|
|
1102
1054
|
outline: 0;
|
|
1103
1055
|
box-shadow: 0 0 0 0.2rem rgba(74, 144, 217, 0.25);
|
|
@@ -1109,7 +1061,6 @@ textarea.form-control {
|
|
|
1109
1061
|
align-items: center;
|
|
1110
1062
|
display: none;
|
|
1111
1063
|
}
|
|
1112
|
-
|
|
1113
1064
|
.navbar-collapse.show {
|
|
1114
1065
|
display: flex;
|
|
1115
1066
|
}
|
|
@@ -1191,20 +1142,16 @@ textarea.form-control {
|
|
|
1191
1142
|
display: none;
|
|
1192
1143
|
}
|
|
1193
1144
|
}
|
|
1194
|
-
|
|
1195
1145
|
.navbar-dark {
|
|
1196
1146
|
color: #fff;
|
|
1197
1147
|
background-color: #212529;
|
|
1198
1148
|
}
|
|
1199
|
-
|
|
1200
1149
|
.navbar-dark .navbar-brand {
|
|
1201
1150
|
color: #fff;
|
|
1202
1151
|
}
|
|
1203
|
-
|
|
1204
1152
|
.navbar-dark .nav-link {
|
|
1205
1153
|
color: rgba(255, 255, 255, 0.75);
|
|
1206
1154
|
}
|
|
1207
|
-
|
|
1208
1155
|
.navbar-dark .nav-link:hover, .navbar-dark .nav-link.active {
|
|
1209
1156
|
color: #fff;
|
|
1210
1157
|
}
|
|
@@ -1212,11 +1159,9 @@ textarea.form-control {
|
|
|
1212
1159
|
.navbar-light {
|
|
1213
1160
|
background-color: #f8f9fa;
|
|
1214
1161
|
}
|
|
1215
|
-
|
|
1216
1162
|
.navbar-light .nav-link {
|
|
1217
1163
|
color: rgba(0, 0, 0, 0.55);
|
|
1218
1164
|
}
|
|
1219
|
-
|
|
1220
1165
|
.navbar-light .nav-link:hover, .navbar-light .nav-link.active {
|
|
1221
1166
|
color: rgba(0, 0, 0, 0.9);
|
|
1222
1167
|
}
|
|
@@ -1238,7 +1183,6 @@ textarea.form-control {
|
|
|
1238
1183
|
color: #6c757d;
|
|
1239
1184
|
content: "/";
|
|
1240
1185
|
}
|
|
1241
|
-
|
|
1242
1186
|
.breadcrumb-item.active {
|
|
1243
1187
|
color: #6c757d;
|
|
1244
1188
|
}
|
|
@@ -1255,7 +1199,6 @@ textarea.form-control {
|
|
|
1255
1199
|
overflow-y: auto;
|
|
1256
1200
|
outline: 0;
|
|
1257
1201
|
}
|
|
1258
|
-
|
|
1259
1202
|
.modal.show {
|
|
1260
1203
|
display: block;
|
|
1261
1204
|
}
|
|
@@ -1330,7 +1273,6 @@ textarea.form-control {
|
|
|
1330
1273
|
background-color: rgba(0, 0, 0, 0.5);
|
|
1331
1274
|
display: none;
|
|
1332
1275
|
}
|
|
1333
|
-
|
|
1334
1276
|
.modal-backdrop.show {
|
|
1335
1277
|
display: block;
|
|
1336
1278
|
}
|
|
@@ -1394,7 +1336,6 @@ textarea.form-control {
|
|
|
1394
1336
|
.alert-dismissible {
|
|
1395
1337
|
padding-right: 3rem;
|
|
1396
1338
|
}
|
|
1397
|
-
|
|
1398
1339
|
.alert-dismissible .btn-close {
|
|
1399
1340
|
position: absolute;
|
|
1400
1341
|
top: 0;
|
|
@@ -1406,7 +1347,6 @@ textarea.form-control {
|
|
|
1406
1347
|
color: inherit;
|
|
1407
1348
|
opacity: 0.5;
|
|
1408
1349
|
}
|
|
1409
|
-
|
|
1410
1350
|
.alert-dismissible .btn-close:hover {
|
|
1411
1351
|
opacity: 0.75;
|
|
1412
1352
|
}
|
|
@@ -1417,19 +1357,16 @@ textarea.form-control {
|
|
|
1417
1357
|
vertical-align: top;
|
|
1418
1358
|
border-color: rgba(0, 0, 0, 0.1);
|
|
1419
1359
|
}
|
|
1420
|
-
|
|
1421
1360
|
.table > :not(caption) > * > * {
|
|
1422
1361
|
padding: 0.5rem;
|
|
1423
1362
|
border-bottom-width: 1px;
|
|
1424
1363
|
border-bottom-style: solid;
|
|
1425
1364
|
border-bottom-color: inherit;
|
|
1426
1365
|
}
|
|
1427
|
-
|
|
1428
1366
|
.table > thead {
|
|
1429
1367
|
vertical-align: bottom;
|
|
1430
1368
|
border-bottom: 2px solid currentColor;
|
|
1431
1369
|
}
|
|
1432
|
-
|
|
1433
1370
|
.table > tbody > tr:last-child > * {
|
|
1434
1371
|
border-bottom-color: transparent;
|
|
1435
1372
|
}
|
|
@@ -1441,7 +1378,6 @@ textarea.form-control {
|
|
|
1441
1378
|
.table-bordered {
|
|
1442
1379
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
1443
1380
|
}
|
|
1444
|
-
|
|
1445
1381
|
.table-bordered > :not(caption) > * > * {
|
|
1446
1382
|
border-width: 1px;
|
|
1447
1383
|
border-style: solid;
|
|
@@ -1528,7 +1464,6 @@ textarea.form-control {
|
|
|
1528
1464
|
background-color: #fff;
|
|
1529
1465
|
border-color: rgba(0, 0, 0, 0.1);
|
|
1530
1466
|
}
|
|
1531
|
-
|
|
1532
1467
|
.page-item.active .page-link {
|
|
1533
1468
|
color: #fff;
|
|
1534
1469
|
background-color: #4a90d9;
|
|
@@ -1546,13 +1481,11 @@ textarea.form-control {
|
|
|
1546
1481
|
line-height: 1.25;
|
|
1547
1482
|
transition: color 0.15s, background-color 0.15s, border-color 0.15s;
|
|
1548
1483
|
}
|
|
1549
|
-
|
|
1550
1484
|
.page-link:hover {
|
|
1551
1485
|
color: #2a76c6;
|
|
1552
1486
|
background-color: rgba(74, 144, 217, 0.08);
|
|
1553
1487
|
border-color: rgba(0, 0, 0, 0.2);
|
|
1554
1488
|
}
|
|
1555
|
-
|
|
1556
1489
|
.page-link:focus {
|
|
1557
1490
|
outline: 0;
|
|
1558
1491
|
box-shadow: 0 0 0 0.2rem rgba(74, 144, 217, 0.25);
|
|
@@ -1613,7 +1546,6 @@ textarea.form-control {
|
|
|
1613
1546
|
display: inline-block !important;
|
|
1614
1547
|
}
|
|
1615
1548
|
}
|
|
1616
|
-
|
|
1617
1549
|
@media (min-width: 768px) {
|
|
1618
1550
|
.d-md-none {
|
|
1619
1551
|
display: none !important;
|
|
@@ -1631,7 +1563,6 @@ textarea.form-control {
|
|
|
1631
1563
|
display: inline-block !important;
|
|
1632
1564
|
}
|
|
1633
1565
|
}
|
|
1634
|
-
|
|
1635
1566
|
@media (min-width: 992px) {
|
|
1636
1567
|
.d-lg-none {
|
|
1637
1568
|
display: none !important;
|
|
@@ -1649,7 +1580,6 @@ textarea.form-control {
|
|
|
1649
1580
|
display: inline-block !important;
|
|
1650
1581
|
}
|
|
1651
1582
|
}
|
|
1652
|
-
|
|
1653
1583
|
.flex-row {
|
|
1654
1584
|
flex-direction: row !important;
|
|
1655
1585
|
}
|
|
@@ -2356,7 +2286,6 @@ textarea.form-control {
|
|
|
2356
2286
|
.collapse {
|
|
2357
2287
|
display: none;
|
|
2358
2288
|
}
|
|
2359
|
-
|
|
2360
2289
|
.collapse.show {
|
|
2361
2290
|
display: block;
|
|
2362
2291
|
}
|
|
@@ -2365,7 +2294,6 @@ textarea.form-control {
|
|
|
2365
2294
|
opacity: 0;
|
|
2366
2295
|
transition: opacity 0.15s linear;
|
|
2367
2296
|
}
|
|
2368
|
-
|
|
2369
2297
|
.fade.show {
|
|
2370
2298
|
opacity: 1;
|
|
2371
2299
|
}
|
|
@@ -2393,11 +2321,9 @@ textarea.form-control {
|
|
|
2393
2321
|
font-size: 1.25rem;
|
|
2394
2322
|
line-height: 1;
|
|
2395
2323
|
}
|
|
2396
|
-
|
|
2397
2324
|
.btn-close:hover {
|
|
2398
2325
|
opacity: 0.75;
|
|
2399
2326
|
}
|
|
2400
|
-
|
|
2401
2327
|
.btn-close:focus {
|
|
2402
2328
|
opacity: 1;
|
|
2403
2329
|
outline: 0;
|