From 3df9cc26d4b6ab525e6905bca063d0d2e7339f08 Mon Sep 17 00:00:00 2001 From: Elenore Bastian Date: Fri, 26 Jan 2018 15:27:35 -0800 Subject: [PATCH] Update css for new reporter status Signed-off-by: Gregg Van Hove --- lib/jasmine-core/jasmine.css | 6 +++--- src/html/_HTMLReporter.scss | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/jasmine-core/jasmine.css b/lib/jasmine-core/jasmine.css index a10d0838..941ecc50 100644 --- a/lib/jasmine-core/jasmine.css +++ b/lib/jasmine-core/jasmine.css @@ -18,8 +18,8 @@ body { overflow-y: scroll; } .jasmine_html-reporter .jasmine-symbol-summary li.jasmine-passed:before { color: #007069; content: "\02022"; } .jasmine_html-reporter .jasmine-symbol-summary li.jasmine-failed { line-height: 9px; } .jasmine_html-reporter .jasmine-symbol-summary li.jasmine-failed:before { color: #ca3a11; content: "\d7"; font-weight: bold; margin-left: -1px; } -.jasmine_html-reporter .jasmine-symbol-summary li.jasmine-disabled { font-size: 14px; } -.jasmine_html-reporter .jasmine-symbol-summary li.jasmine-disabled:before { color: #bababa; content: "\02022"; } +.jasmine_html-reporter .jasmine-symbol-summary li.jasmine-excluded { font-size: 14px; } +.jasmine_html-reporter .jasmine-symbol-summary li.jasmine-excluded:before { color: #bababa; content: "\02022"; } .jasmine_html-reporter .jasmine-symbol-summary li.jasmine-pending { line-height: 17px; } .jasmine_html-reporter .jasmine-symbol-summary li.jasmine-pending:before { color: #ba9d37; content: "*"; } .jasmine_html-reporter .jasmine-symbol-summary li.jasmine-empty { font-size: 14px; } @@ -46,7 +46,7 @@ body { overflow-y: scroll; } .jasmine_html-reporter .jasmine-summary li.jasmine-failed a { color: #ca3a11; } .jasmine_html-reporter .jasmine-summary li.jasmine-empty a { color: #ba9d37; } .jasmine_html-reporter .jasmine-summary li.jasmine-pending a { color: #ba9d37; } -.jasmine_html-reporter .jasmine-summary li.jasmine-disabled a { color: #bababa; } +.jasmine_html-reporter .jasmine-summary li.jasmine-excluded a { color: #bababa; } .jasmine_html-reporter .jasmine-description + .jasmine-suite { margin-top: 0; } .jasmine_html-reporter .jasmine-suite { margin-top: 14px; } .jasmine_html-reporter .jasmine-suite a { color: #333; } diff --git a/src/html/_HTMLReporter.scss b/src/html/_HTMLReporter.scss index f7eace89..f74ed7ff 100644 --- a/src/html/_HTMLReporter.scss +++ b/src/html/_HTMLReporter.scss @@ -135,7 +135,7 @@ body { } } - &.jasmine-disabled { + &.jasmine-excluded { font-size: 14px; &:before { @@ -287,7 +287,7 @@ body { color: $pending-color; } - &.jasmine-disabled a { + &.jasmine-excluded a { color: $neutral-color; } }