diff --git a/lib/jasmine-core/jasmine.css b/lib/jasmine-core/jasmine.css index ed789918..1f364464 100644 --- a/lib/jasmine-core/jasmine.css +++ b/lib/jasmine-core/jasmine.css @@ -55,9 +55,6 @@ body { position: fixed; right: 100%; } -.jasmine_html-reporter .jasmine-version { - color: #aaa; -} .jasmine_html-reporter .jasmine-banner { margin-top: 14px; } @@ -169,10 +166,11 @@ body { } .jasmine_html-reporter .jasmine-bar.jasmine-menu { background-color: #fff; - color: #aaa; + color: #000; } .jasmine_html-reporter .jasmine-bar.jasmine-menu a { - color: #333; + color: blue; + text-decoration: underline; } .jasmine_html-reporter .jasmine-bar a { color: white; diff --git a/src/html/_HTMLReporter.scss b/src/html/_HTMLReporter.scss index 25cfa907..7fb712f7 100644 --- a/src/html/_HTMLReporter.scss +++ b/src/html/_HTMLReporter.scss @@ -3,11 +3,13 @@ $line-height: 14px; $margin-unit: 14px; -$faint-text-color: #aaa; $light-text-color: #666; $text-color: #333; +$inactive-tab-text-color: blue; +$active-tab-text-color: #000; $page-background-color: #eee; +$menu-background-color: #aaa; $passing-color: #007069; $failing-color: #ca3a11; @@ -91,10 +93,6 @@ body { right: 100%; } - .jasmine-version { - color: $faint-text-color; - } - //--- Banner ---// .jasmine-banner { @@ -238,10 +236,11 @@ body { &.jasmine-menu { background-color: #fff; - color: $faint-text-color; + color: $active-tab-text-color; a { - color: $text-color; + color: $inactive-tab-text-color; + text-decoration: underline; } }