1/*
2 * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 *    notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 *    notice, this list of conditions and the following disclaimer in the
11 *    documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
20 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
22 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25body {
26    margin: 0
27}
28
29table {
30    width: 100%;
31    border-spacing: 0;
32    counter-reset: lines;
33    white-space: pre-wrap !important;
34    margin: 0;
35    word-break: break-word;
36    font-size: initial;
37    font-family: monospace;
38}
39
40td {
41    padding: 0 !important;
42    vertical-align: baseline
43}
44
45.webkit-line-gutter-backdrop, .webkit-line-number {
46    /* Keep this in sync with inspector.css (.webkit-line-gutter-backdrop) */
47    box-sizing: border-box;
48    padding: 0 4px !important;
49    width: 31px;
50    background-color: rgb(240, 240, 240);
51    border-right: 1px solid rgb(187, 187, 187) !important;
52    -webkit-user-select: none;
53}
54
55.webkit-line-gutter-backdrop {
56    /* Keep this in sync with inspector.css (.webkit-line-gutter-backdrop) */
57    position: absolute;
58    z-index: -1;
59    left: 0;
60    top: 0;
61    height: 100%
62}
63
64.webkit-line-number {
65    text-align: right;
66    color: rgb(128, 128, 128);
67    word-break: normal;
68    white-space: nowrap;
69    font-size: 9px;
70    font-family: Helvetica
71}
72
73.webkit-line-number::before {
74    content: counter(lines);
75    counter-increment: lines;
76    -webkit-user-select: none
77}
78
79tbody:last-child .webkit-line-content:empty:before {
80    content: " ";
81}
82
83.webkit-line-content {
84    padding: 0 5px !important;
85}
86
87.webkit-html-tag {
88    /* Keep this in sync with inspector.css (.webkit-html-tag) */
89    color: rgb(136, 18, 128);
90}
91
92.webkit-html-attribute-name {
93    /* Keep this in sync with inspector.css (.webkit-html-attribute-name) */
94    color: rgb(153, 69, 0);
95}
96
97.webkit-html-attribute-value {
98    /* Keep this in sync with inspector.css (.webkit-html-attribute-value) */
99    color: rgb(26, 26, 166);
100}
101
102.webkit-html-external-link, .webkit-html-resource-link {
103    /* Keep this in sync with inspector.css (.webkit-html-external-link, .webkit-html-resource-link) */
104    color: #00e;
105}
106
107.webkit-html-external-link {
108    /* Keep this in sync with inspector.css (.webkit-html-external-link) */
109    text-decoration: none;
110}
111
112.webkit-html-external-link:hover {
113    /* Keep this in sync with inspector.css (.webkit-html-external-link:hover) */
114    text-decoration: underline;
115}
116
117.webkit-html-comment {
118    /* Keep this in sync with inspector.css (.webkit-html-comment) */
119    color: rgb(35, 110, 37);
120}
121
122.webkit-html-doctype {
123    /* Keep this in sync with inspector.css (.webkit-html-doctype) */
124    color: rgb(192, 192, 192);
125}
126
127.webkit-html-entity {
128    rgb(136, 18, 128);
129}
130
131.webkit-html-message-bubble {
132    box-shadow: black 0px 2px 5px;
133    border-radius: 9px;
134    -webkit-border-fit: lines;
135    min-height: 13px;
136    font-size: 9px;
137    font-family: Lucida Grande, sans-serif;
138    font-weight: bold;
139    margin: 6px 25px;
140    padding: 0 7px 1px;
141}
142
143.webkit-html-warning-message {
144    background-color: rgb(100%, 62%, 42%);
145    border: 2px solid rgb(100%, 52%, 21%);
146}
147
148.webkit-html-error-message {
149    background-color: rgb(100%, 42%, 42%);
150    border: 2px solid rgb(100%, 31%, 31%);
151}
152
153.webkit-html-message-line {
154    padding-left: 23px;
155    text-indent: -20px;
156}
157
158.webkit-html-message-icon {
159    position: relative;
160    top: 2px;
161    margin: 0 4px;
162}
163