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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-10 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 2285-2303 li { Link Here
2285
        &.alert {
2283
        &.alert {
2286
            background: #FFFADE none;
2284
            background: #FFFADE none;
2287
            border-color: #E0C726;
2285
            border-color: #E0C726;
2288
2289
            .problem {
2290
                background-color: transparent;
2291
            }
2292
        }
2286
        }
2293
2287
2294
        &.message {
2288
        &.message {
2295
            background: #E8EDF6 none;
2289
            background: #E8EDF6 none;
2296
            border-color: #A4BEDD;
2290
            border-color: #A4BEDD;
2297
2298
            .problem {
2299
                background-color: transparent;
2300
            }
2301
        }
2291
        }
2302
    }
2292
    }
2303
2293
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-1 / +1 lines)
Lines 302-308 Link Here
302
                                [% ELSE %]
302
                                [% ELSE %]
303
                                    <div class="dialog message">
303
                                    <div class="dialog message">
304
                                [% END %]
304
                                [% END %]
305
                                        <p class="problem ret_checkinmsg">[% checkinmsg | html_line_break %]</p>
305
                                        <p class="ret_checkinmsg">[% checkinmsg | html_line_break %]</p>
306
                                    </div>
306
                                    </div>
307
                            [% END # /IF checkinmsg %]
307
                            [% END # /IF checkinmsg %]
308
                        [% END # /BLOCK all_checkin_messages %]
308
                        [% END # /BLOCK all_checkin_messages %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-1 / +1 lines)
Lines 544-550 Link Here
544
                                            [% IF ( patron.password ) %]
544
                                            [% IF ( patron.password ) %]
545
                                                *******
545
                                                *******
546
                                            [% ELSE %]
546
                                            [% ELSE %]
547
                                                <span class="problem"><a href="/cgi-bin/koha/members/member-password.pl?member=[% patron.borrowernumber | uri %]">Undefined</a></span>
547
                                                <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>
548
                                            [% END %]
548
                                            [% END %]
549
                                        </li>
549
                                        </li>
550
550
(-)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