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 615-624 ol { Link Here
615
}
615
}
616
616
617
.problem {
617
.problem {
618
    background-color: #FFFFCC;
619
    color: #990000;
618
    color: #990000;
620
    font-weight: bold;
619
    font-weight: bold;
621
    line-height: 1.7em;
622
}
620
}
623
621
624
fieldset {
622
fieldset {
Lines 1775-1781 i { Link Here
1775
    h2,
1773
    h2,
1776
    h3,
1774
    h3,
1777
    h4 {
1775
    h4 {
1778
        margin: auto;
1776
        margin: 5px auto;
1779
        text-align: center;
1777
        text-align: center;
1780
    }
1778
    }
1781
1779
Lines 1798-1803 i { Link Here
1798
        list-style-position: inside;
1796
        list-style-position: inside;
1799
    }
1797
    }
1800
1798
1799
    p {
1800
        margin-top: 0;
1801
        &+p {
1802
            margin-top: 5px;
1803
        }
1804
    }
1805
1801
    table {
1806
    table {
1802
        margin: .5em auto;
1807
        margin: .5em auto;
1803
1808
Lines 2350-2368 td { Link Here
2350
        &.alert {
2355
        &.alert {
2351
            background: #FFFADE none;
2356
            background: #FFFADE none;
2352
            border-color: #E0C726;
2357
            border-color: #E0C726;
2353
2354
            .problem {
2355
                background-color: transparent;
2356
            }
2357
        }
2358
        }
2358
2359
2359
        &.message {
2360
        &.message {
2360
            background: #E8EDF6 none;
2361
            background: #E8EDF6 none;
2361
            border-color: #A4BEDD;
2362
            border-color: #A4BEDD;
2362
2363
            .problem {
2364
                background-color: transparent;
2365
            }
2366
        }
2363
        }
2367
    }
2364
    }
2368
2365
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-1 / +1 lines)
Lines 344-350 Link Here
344
                                [% ELSE %]
344
                                [% ELSE %]
345
                                    <div class="dialog message">
345
                                    <div class="dialog message">
346
                                [% END %]
346
                                [% END %]
347
                                        <p class="problem ret_checkinmsg">[% checkinmsg | html_line_break %]</p>
347
                                        <p class="ret_checkinmsg">[% checkinmsg | html_line_break %]</p>
348
                                    </div>
348
                                    </div>
349
                            [% END # /IF checkinmsg %]
349
                            [% END # /IF checkinmsg %]
350
                        [% END # /BLOCK all_checkin_messages %]
350
                        [% END # /BLOCK all_checkin_messages %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-1 / +1 lines)
Lines 560-566 Link Here
560
                                            [% IF ( patron.password ) %]
560
                                            [% IF ( patron.password ) %]
561
                                                *******
561
                                                *******
562
                                            [% ELSE %]
562
                                            [% ELSE %]
563
                                                <span class="problem"><a href="/cgi-bin/koha/members/member-password.pl?member=[% patron.borrowernumber | uri %]">Undefined</a></span>
563
                                                <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>
564
                                            [% END %]
564
                                            [% END %]
565
                                        </li>
565
                                        </li>
566
566
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt (-2 / +1 lines)
Lines 101-107 Link Here
101
        <td> [% subscription.notes | html | html_line_break %]
101
        <td> [% subscription.notes | html | html_line_break %]
102
            [% UNLESS subscription.closed %]
102
            [% UNLESS subscription.closed %]
103
                [% IF ( subscription.subscriptionexpired ) %]
103
                [% IF ( subscription.subscriptionexpired ) %]
104
                    <br /><span class="problem"> Subscription expired</span>
104
                    <p class="problem"><i class="fa fa-exclamation-circle problem" aria-hidden="true"></i> Subscription expired</p>
105
                [% END %]
105
                [% END %]
106
            [% ELSE %]
106
            [% ELSE %]
107
                <br /> Subscription closed
107
                <br /> Subscription closed
108
- 

Return to bug 26838