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