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

(-)a/installer/install.pl (-2 / +2 lines)
Lines 558-565 sub chk_log { #returns a logfile in $dir or - if that failed - in temp dir Link Here
558
sub colorize {
558
sub colorize {
559
    my ($report) = @_;
559
    my ($report) = @_;
560
    my $h = HTML::FromANSI::Tiny->new(
560
    my $h = HTML::FromANSI::Tiny->new(
561
        auto_reverse => 0, background    => 'white', foreground => 'black',
561
        auto_reverse => 0, background => 'white', foreground => 'black', no_plain_tags => 1,
562
        inline_style => 1, no_plain_tags => 1
562
        class_prefix => 'updatedatabase-report-'
563
    );
563
    );
564
564
565
    my @states = ( 'success', 'error' );
565
    my @states = ( 'success', 'error' );
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/installer.scss (-1 / +17 lines)
Lines 1-3 Link Here
1
@import "variables";
1
@import "flatpickr";
2
@import "flatpickr";
2
3
3
body {
4
body {
Lines 247-249 span.breadcrumbs { Link Here
247
    color: #727272;
248
    color: #727272;
248
    font-size: 90%;
249
    font-size: 90%;
249
}
250
}
250
- 
251
252
.updatedatabase-report-red{
253
    color: $warning-text-color;
254
}
255
256
.updatedatabase-report-green {
257
    color: $green-text-color;
258
}
259
260
.updatedatabase-report-yellow {
261
    color: #ce9b1c;
262
}
263
264
.updatedatabase-report-blue {
265
    color: blue;
266
}

Return to bug 35681