View | Details | Raw Unified | Return to bug 31753
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_variables.scss (+1 lines)
Lines 1-6 Link Here
1
$green-text-color: #006100;
1
$green-text-color: #006100;
2
$background-color-primary: #408540;
2
$background-color-primary: #408540;
3
$background-color-secondary: lighten(saturate(adjust-hue($background-color-primary, -24), 9), 9);
3
$background-color-secondary: lighten(saturate(adjust-hue($background-color-primary, -24), 9), 9);
4
$background-color-modal: lighten( saturate( $background-color-secondary, 5 ), 30 );
4
5
5
// Copied from Bootstrap 5 without system-ui because of
6
// Copied from Bootstrap 5 without system-ui because of
6
// https://infinnie.github.io/blog/2017/systemui.html
7
// https://infinnie.github.io/blog/2017/systemui.html
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-20 / +24 lines)
Lines 593-602 h4, Link Here
593
h5,
593
h5,
594
h6 {
594
h6 {
595
    margin: .5em 0;
595
    margin: .5em 0;
596
597
    a, a:link, a:visited {
598
        color: #000;
599
    }
600
}
596
}
601
597
602
hr {
598
hr {
Lines 1627-1633 i { Link Here
1627
    margin: 1em auto;
1623
    margin: 1em auto;
1628
    padding: .5em;
1624
    padding: .5em;
1629
    text-align: center;
1625
    text-align: center;
1630
    display: table;
1631
    width: 65%;
1626
    width: 65%;
1632
    max-width: 600px;
1627
    max-width: 600px;
1633
1628
Lines 3393-3420 label { Link Here
3393
    }
3388
    }
3394
}
3389
}
3395
3390
3396
.modal-header {
3397
    .closebtn {
3398
        margin-top: 4px;
3399
    }
3400
}
3401
3402
.closebtn {
3391
.closebtn {
3403
    color: #000;
3392
    color: #000;
3404
    filter: alpha(opacity = 20);
3393
    cursor: pointer;
3405
    float: right;
3394
    float: right;
3406
    font-size: 21px;
3395
    font-size: 21px;
3407
    font-weight: bold;
3396
    font-weight: bold;
3408
    line-height: 1;
3397
    line-height: 1;
3409
    opacity: .2;
3398
    margin-top: 4px;
3399
    text-decoration: none;
3400
    text-shadow: 0 1px 0 rgba( 255, 255, 255, .4 );
3410
3401
3411
    &:hover,
3402
    &:focus,
3412
    &:focus {
3403
    &:hover {
3404
        text-shadow: 0 1px 0 rgba( 255, 255, 255, .6 );
3405
    }
3406
3407
    &:active {
3408
        box-shadow: none;
3409
        text-shadow: 0 1px 0 rgba( 255, 255, 255, .9 );
3410
    }
3411
}
3412
3413
.modal-header {
3414
    border-bottom: 1px solid $background-color-secondary;
3415
3416
    h3 {
3413
        color: #000;
3417
        color: #000;
3414
        cursor: pointer;
3415
        filter: alpha(opacity = 50);
3416
        opacity: .5;
3417
        text-decoration: none;
3418
    }
3418
    }
3419
}
3419
}
3420
3420
Lines 3432-3444 label { Link Here
3432
}
3432
}
3433
3433
3434
.modal-content {
3434
.modal-content {
3435
    background-color: rgb(211, 223, 204);
3435
    background-color: $background-color-modal;
3436
3436
3437
    fieldset {
3437
    fieldset {
3438
        box-shadow: none;
3438
        box-shadow: none;
3439
    }
3439
    }
3440
}
3440
}
3441
3441
3442
.modal-footer {
3443
    border-top: 1px solid $background-color-secondary;
3444
}
3445
3442
.btn-group {
3446
.btn-group {
3443
    label,
3447
    label,
3444
    select {
3448
    select {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-1 / +1 lines)
Lines 2320-2325 Link Here
2320
                            <h4 class="modal-title">' + title + '</h4>\
2320
                            <h4 class="modal-title">' + title + '</h4>\
2321
                        </div>\
2321
                        </div>\
2322
                        <div class="modal-body"><textarea id="code' + reportid + '">' + message + '</textarea>\
2322
                        <div class="modal-body"><textarea id="code' + reportid + '">' + message + '</textarea>\
2323
                        </div>\
2323
                        <div class="modal-footer">\
2324
                        <div class="modal-footer">\
2324
                            <a id="preview-modal-editreport" class="btn btn-default" href="/cgi-bin/koha/reports/guided_reports.pl?reports=' + reportid + '&amp;phase=Edit%20SQL"><i class="fa fa-pencil"></i> ' + _("Edit") + '</a>\
2325
                            <a id="preview-modal-editreport" class="btn btn-default" href="/cgi-bin/koha/reports/guided_reports.pl?reports=' + reportid + '&amp;phase=Edit%20SQL"><i class="fa fa-pencil"></i> ' + _("Edit") + '</a>\
2325
                            <a id="preview-modal-duplicate" class="btn btn-default" href="/cgi-bin/koha/reports/guided_reports.pl?phase=Create report from existing&amp;report_id=' + reportid + '"><i class="fa fa-copy"></i> ' + _("Duplicate") + '</a>\
2326
                            <a id="preview-modal-duplicate" class="btn btn-default" href="/cgi-bin/koha/reports/guided_reports.pl?phase=Create report from existing&amp;report_id=' + reportid + '"><i class="fa fa-copy"></i> ' + _("Duplicate") + '</a>\
2326
- 

Return to bug 31753