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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-11 / +8 lines)
Lines 596-605 ol { Link Here
596
}
596
}
597
597
598
.problem {
598
.problem {
599
    background-color: #FFFFCC;
600
    color: #990000;
599
    color: #990000;
601
    font-weight: bold;
600
    font-weight: bold;
602
    line-height: 1.7em;
603
}
601
}
604
602
605
fieldset {
603
fieldset {
Lines 1746-1752 i { Link Here
1746
    h2,
1744
    h2,
1747
    h3,
1745
    h3,
1748
    h4 {
1746
    h4 {
1749
        margin: auto;
1747
        margin: 5px auto;
1750
        text-align: center;
1748
        text-align: center;
1751
    }
1749
    }
1752
1750
Lines 1769-1774 i { Link Here
1769
        list-style-position: inside;
1767
        list-style-position: inside;
1770
    }
1768
    }
1771
1769
1770
    p {
1771
        margin-top: 0;
1772
        &+p {
1773
            margin-top: 5px;
1774
        }
1775
    }
1776
1772
    table {
1777
    table {
1773
        margin: .5em auto;
1778
        margin: .5em auto;
1774
1779
Lines 2312-2330 li { Link Here
2312
        &.alert {
2317
        &.alert {
2313
            background: #FFFADE none;
2318
            background: #FFFADE none;
2314
            border-color: #E0C726;
2319
            border-color: #E0C726;
2315
2316
            .problem {
2317
                background-color: transparent;
2318
            }
2319
        }
2320
        }
2320
2321
2321
        &.message {
2322
        &.message {
2322
            background: #E8EDF6 none;
2323
            background: #E8EDF6 none;
2323
            border-color: #A4BEDD;
2324
            border-color: #A4BEDD;
2324
2325
            .problem {
2326
                background-color: transparent;
2327
            }
2328
        }
2325
        }
2329
    }
2326
    }
2330
2327
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-1 / +1 lines)
Lines 306-312 Link Here
306
                                [% ELSE %]
306
                                [% ELSE %]
307
                                    <div class="dialog message">
307
                                    <div class="dialog message">
308
                                [% END %]
308
                                [% END %]
309
                                        <p class="problem ret_checkinmsg">[% checkinmsg | html_line_break %]</p>
309
                                        <p class="ret_checkinmsg">[% checkinmsg | html_line_break %]</p>
310
                                    </div>
310
                                    </div>
311
                            [% END # /IF checkinmsg %]
311
                            [% END # /IF checkinmsg %]
312
                        [% END # /BLOCK all_checkin_messages %]
312
                        [% END # /BLOCK all_checkin_messages %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-1 / +1 lines)
Lines 541-547 Link Here
541
                                            [% IF ( patron.password ) %]
541
                                            [% IF ( patron.password ) %]
542
                                                *******
542
                                                *******
543
                                            [% ELSE %]
543
                                            [% ELSE %]
544
                                                <span class="problem"><a href="/cgi-bin/koha/members/member-password.pl?member=[% patron.borrowernumber | uri %]">Undefined</a></span>
544
                                                <i class="fa fa-exclamation-circle problem" aria-hidden="true"></i> <a href="/cgi-bin/koha/members/member-password.pl?member=[% patron.borrowernumber | uri %]">Undefined</a>
545
                                            [% END %]
545
                                            [% END %]
546
                                        </li>
546
                                        </li>
547
547
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt (-2 / +1 lines)
Lines 87-93 Link Here
87
        <td> [% subscription.notes | html | html_line_break %]
87
        <td> [% subscription.notes | html | html_line_break %]
88
            [% UNLESS subscription.closed %]
88
            [% UNLESS subscription.closed %]
89
                [% IF ( subscription.subscriptionexpired ) %]
89
                [% IF ( subscription.subscriptionexpired ) %]
90
                    <br /><span class="problem"> Subscription expired</span>
90
                    <p class="problem"><i class="fa fa-exclamation-circle problem" aria-hidden="true"></i> Subscription expired</p>
91
                [% END %]
91
                [% END %]
92
            [% ELSE %]
92
            [% ELSE %]
93
                <br /> Subscription closed
93
                <br /> Subscription closed
94
- 

Return to bug 26838