@@ -, +, @@ --- installer/install.pl | 4 ++-- .../intranet-tmpl/prog/css/src/installer.scss | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) --- a/installer/install.pl +++ a/installer/install.pl @@ -558,8 +558,8 @@ sub chk_log { #returns a logfile in $dir or - if that failed - in temp dir sub colorize { my ($report) = @_; my $h = HTML::FromANSI::Tiny->new( - auto_reverse => 0, background => 'white', foreground => 'black', - inline_style => 1, no_plain_tags => 1 + auto_reverse => 0, background => 'white', foreground => 'black', no_plain_tags => 1, + class_prefix => 'updatedatabase-report-' ); my @states = ( 'success', 'error' ); --- a/koha-tmpl/intranet-tmpl/prog/css/src/installer.scss +++ a/koha-tmpl/intranet-tmpl/prog/css/src/installer.scss @@ -1,3 +1,4 @@ +@import "variables"; @import "flatpickr"; body { @@ -247,3 +248,19 @@ span.breadcrumbs { color: #727272; font-size: 90%; } + +.updatedatabase-report-red{ + color: $warning-text-color; +} + +.updatedatabase-report-green { + color: $green-text-color; +} + +.updatedatabase-report-yellow { + color: #ce9b1c; +} + +.updatedatabase-report-blue { + color: blue; +} --