Overview
Comment:Fix date picker colors
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 48ce8e714b56b172e967021ffe2fb0daf02c8718b1e9afba31519a85c9127331
User & Date: bohwaz on 2022-01-07 13:11:56
Other Links: manifest | tags
Context
2022-01-07
13:27
Fix date picker change when having a preselected date of 31 and switching to a month with only 30 days Also fix calendar dialog not closing when clicking on button check-in: c62a80180c user: bohwaz tags: trunk, stable
13:11
Fix date picker colors check-in: 48ce8e714b user: bohwaz tags: trunk
13:11
Fix extra script tag check-in: fc68537a65 user: bohwaz tags: trunk
Changes

Modified src/www/admin/static/styles/03-forms.css from [c6d488cd56] to [2fe952f326].

427
428
429
430
431
432
433


434
435
436
437
438
439
440
/** Datepicker widget */
.datepicker-parent {
    position: relative;
}

dialog {
    display: none;


}

dialog[open] {
    display: block;
}

dialog.datepicker {







>
>







427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
/** Datepicker widget */
.datepicker-parent {
    position: relative;
}

dialog {
    display: none;
    background: rgb(var(--gBgColor));
    color: rgb(var(--gTextColor));
}

dialog[open] {
    display: block;
}

dialog.datepicker {
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
}

.datepicker span * {
    font-size: 1rem;
    font-family: inherit;
    margin: .1rem;
    padding: .1rem;
    border: 1px solid #ccc;
    text-align: center;
}

.datepicker table {
    border-collapse: collapse;
    width: 100%;
}

.datepicker thead td {
    font-size: 80%;
    color: #999;
    text-align: center;
}

.datepicker tbody tr:nth-child(even) {
    background-color: #eee;
}

.datepicker tbody td:nth-child(6) input {
    color: #333;
}
.datepicker tbody td:nth-child(7) input {
    color: #666;
}

.datepicker tbody td {
    text-align: center;
    width: 14.3%;
    padding: 0;
}







|










|




|



|


|







470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
}

.datepicker span * {
    font-size: 1rem;
    font-family: inherit;
    margin: .1rem;
    padding: .1rem;
    border: 1px solid var(--gLightBorderColor);
    text-align: center;
}

.datepicker table {
    border-collapse: collapse;
    width: 100%;
}

.datepicker thead td {
    font-size: 80%;
    color: var(--gBorderColor);
    text-align: center;
}

.datepicker tbody tr:nth-child(even) {
    background-color: var(--gLightBackgroundColor);
}

.datepicker tbody td:nth-child(6) input {
    color: var(--gBorderColor);
}
.datepicker tbody td:nth-child(7) input {
    color: var(--gLightBorderColor);
}

.datepicker tbody td {
    text-align: center;
    width: 14.3%;
    padding: 0;
}