initial import
[vuplus_webkit] / Source / WebCore / inspector / front-end / inspectorCommon.css
1 html {
2     height: 100%;
3 }
4
5 body {
6     cursor: default;
7     position: absolute;
8     top: 0;
9     bottom: 0;
10     left: 0;
11     right: 0;
12     overflow: hidden;
13     font-family: Lucida Grande, sans-serif;
14     font-size: 10px;
15     margin: 0;
16     -webkit-text-size-adjust: none;
17     -webkit-user-select: none;
18 }
19
20 * {
21     -webkit-box-sizing: border-box;
22 }
23
24 :focus {
25     outline: none;
26 }
27
28 img {
29     -webkit-user-drag: none;
30 }
31
32 iframe, a img {
33     border: none;
34 }
35
36 iframe.view {
37     position: absolute;
38     width: 100%;
39     height: 100%;
40     left: 0;
41     right: 0;
42     top: 0;
43     bottom: 0;
44 }
45
46 .hidden {
47     display: none !important;
48 }
49
50 .monospace {
51     font-size: 10px !important;
52     font-family: monospace;
53 }
54
55 .resources-dividers {
56     position: absolute;
57     left: 0;
58     right: 0;
59     height: 100%;
60     top: 0;
61     z-index: -100;
62 }
63
64 .resources-event-dividers {
65     position: absolute;
66     left: 0;
67     right: 5px;
68     height: 100%;
69     top: 0;
70     z-index: 300;
71     pointer-events: none;
72 }
73
74 .timeline .resources-event-dividers {
75     height: 19px;
76 }
77
78 .resources-dividers-label-bar {
79     position: absolute;
80     top: 0;
81     left: 0px;
82     right: 0;
83     background-color: rgba(255, 255, 255, 0.8);
84     background-clip: padding;
85     border-bottom: 1px solid rgba(0, 0, 0, 0.3);
86     height: 20px;
87     z-index: 200;
88 }
89
90 .resources-divider {
91     position: absolute;
92     width: 1px;
93     top: 0;
94     bottom: 0;
95     background-color: rgba(0, 0, 0, 0.1);
96 }
97
98 .resources-event-divider-padding {
99     position: absolute;
100     width: 8px;
101     top: 0;
102     bottom: 0;
103     pointer-events: auto;
104 }
105
106 .resources-event-divider {
107     position: absolute;
108     width: 2px;
109     top: 0;
110     bottom: 0;
111     z-index: 300;
112 }
113
114 .resources-red-divider {
115     background-color: rgba(255, 0, 0, 0.5);
116 }
117
118 .resources-blue-divider {
119     background-color: rgba(0, 0, 255, 0.5);
120 }
121
122 .resources-orange-divider {
123     background-color: rgba(255, 178, 23, 0.5);
124 }
125
126 .resources-divider.last {
127     background-color: transparent;
128 }
129
130 .resources-divider-label {
131     position: absolute;
132     top: 4px;
133     right: 3px;
134     font-size: 9px;
135     color: rgb(50%, 50%, 50%);
136     white-space: nowrap;
137 }
138
139
140 /* Network timing is shared between popover and network item view pane */
141
142 .network-timing-row {
143     position: relative;
144     height: 16px;
145 }
146
147 .network-timing-bar {
148     position: absolute;
149     background-color: red;
150     border-left: 1px solid red;
151     opacity: 0.4;
152     top: 0;
153     bottom: 0;
154 }
155
156 .network-timing-bar-title {
157     position: absolute;
158     color: black;
159     top: 1px;
160 }
161
162 .webkit-search-result {
163     -webkit-border-radius: 4px;
164     padding: 2px 2px 2px 3px;
165     margin: -2px -2px -2px -3px;
166     opacity: 0.8;
167     -webkit-box-shadow: rgba(0, 0, 0, .5) 3px 3px 4px;
168     background-color: rgb(241, 234, 0);
169     color: black;
170 }
171