Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Stephen Warren |
| 3 | * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. |
| 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0 |
| 6 | */ |
| 7 | |
| 8 | /* |
| 9 | * This provides pretty formatting of the HTML log file, e.g. |
| 10 | * - colored bars beside/above log sections for easily parsed delineation. |
| 11 | * - color highlighting of various messages. |
| 12 | */ |
| 13 | |
| 14 | body { |
| 15 | background-color: black; |
| 16 | color: #ffffff; |
| 17 | } |
| 18 | |
| 19 | pre { |
| 20 | margin-top: 0px; |
| 21 | margin-bottom: 0px; |
| 22 | } |
| 23 | |
| 24 | .implicit { |
| 25 | color: #808080; |
| 26 | } |
| 27 | |
Stephen Warren | 83357fd | 2016-02-03 16:46:34 -0700 | [diff] [blame] | 28 | .block { |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 29 | border-style: solid; |
| 30 | border-color: #303030; |
| 31 | border-width: 0px 0px 0px 5px; |
| 32 | padding-left: 5px |
| 33 | } |
| 34 | |
Stephen Warren | 83357fd | 2016-02-03 16:46:34 -0700 | [diff] [blame] | 35 | .block-header { |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 36 | background-color: #303030; |
| 37 | margin-left: -5px; |
| 38 | margin-top: 5px; |
| 39 | } |
| 40 | |
Stephen Warren | 83357fd | 2016-02-03 16:46:34 -0700 | [diff] [blame] | 41 | .block-header:hover { |
| 42 | text-decoration: underline; |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 43 | } |
| 44 | |
Stephen Warren | 83357fd | 2016-02-03 16:46:34 -0700 | [diff] [blame] | 45 | .block-trailer { |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 46 | display: none; |
| 47 | } |
| 48 | |
| 49 | .error { |
| 50 | color: #ff0000 |
| 51 | } |
| 52 | |
| 53 | .warning { |
| 54 | color: #ffff00 |
| 55 | } |
| 56 | |
| 57 | .info { |
| 58 | color: #808080 |
| 59 | } |
| 60 | |
| 61 | .action { |
| 62 | color: #8080ff |
| 63 | } |
| 64 | |
| 65 | .status-pass { |
| 66 | color: #00ff00 |
| 67 | } |
| 68 | |
| 69 | .status-skipped { |
| 70 | color: #ffff00 |
| 71 | } |
| 72 | |
Stephen Warren | 78b39cc | 2016-01-27 23:57:51 -0700 | [diff] [blame] | 73 | .status-xfail { |
| 74 | color: #ff7f00 |
| 75 | } |
| 76 | |
| 77 | .status-xpass { |
| 78 | color: #ff7f00 |
| 79 | } |
| 80 | |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 81 | .status-fail { |
| 82 | color: #ff0000 |
| 83 | } |
Stephen Warren | 83357fd | 2016-02-03 16:46:34 -0700 | [diff] [blame] | 84 | |
| 85 | .hidden { |
| 86 | display: none; |
| 87 | } |
| 88 | |
| 89 | a:link { |
| 90 | text-decoration: inherit; |
| 91 | color: inherit; |
| 92 | } |
| 93 | |
| 94 | a:visited { |
| 95 | text-decoration: inherit; |
| 96 | color: inherit; |
| 97 | } |
| 98 | |
| 99 | a:hover { |
| 100 | text-decoration: underline; |
| 101 | } |