tizen beta release
[profile/ivi/webkit-efl.git] / debian / libwebkit-engine / usr / share / ewebkit-0 / webinspector / resourceView.css
1 /*
2  * Copyright (C) 2006, 2007, 2008 Apple Inc.  All rights reserved.
3  * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1.  Redistributions of source code must retain the above copyright
10  *     notice, this list of conditions and the following disclaimer.
11  * 2.  Redistributions in binary form must reproduce the above copyright
12  *     notice, this list of conditions and the following disclaimer in the
13  *     documentation and/or other materials provided with the distribution.
14  * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
15  *     its contributors may be used to endorse or promote products derived
16  *     from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
19  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21  * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
22  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 .resource-view {
31     display: none;
32     position: absolute;
33     top: 0;
34     right: 0;
35     left: 0;
36     bottom: 0;
37     overflow: auto;
38 }
39
40 .resource-view.visible {
41     display: block;
42 }
43
44 .resource-view.font {
45     font-size: 60px;
46     white-space: pre-wrap;
47     word-wrap: break-word;
48     text-align: center;
49     padding: 15px;
50 }
51
52 .resource-view.image > .image {
53     padding: 20px 20px 10px 20px;
54     text-align: center;
55 }
56
57 .resource-view.image > .info {
58     padding-bottom: 10px;
59     font-size: 11px;
60     -webkit-user-select: text;
61 }
62
63 .resource-view.image img.resource-image-view {
64     max-width: 100%;
65     max-height: 1000px;
66     background-image: url(Images/checker.png);
67     -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
68     -webkit-user-select: text;
69     -webkit-user-drag: auto;
70 }
71
72 .resource-status-image {
73     margin-top: -3px;
74     vertical-align: middle;
75 }
76
77 .resource-view.image .title {
78     text-align: center;
79     font-size: 13px;
80 }
81
82 .resource-view.image .infoList {
83     margin: 0;
84 }
85
86 .resource-view.image .infoList dt {
87     font-weight: bold;
88     display: inline-block;
89     width: 50%;
90     text-align: right;
91     color: rgb(76, 76, 76);
92 }
93
94 .resource-view.image .infoList dd {
95     display: inline-block;
96     padding-left: 8px;
97     width: 50%;
98     text-align: left;
99     margin: 0;
100 }
101
102 .resource-view.image .infoList dd::after {
103     white-space: pre;
104     content: "\A";
105 }