2dc038d3ed746c77b4c98a260ab81f643249d3c0
[platform/framework/web/crosswalk.git] / src / chrome / tools / test / reference_build / chrome_linux / resources / inspector / indexedDBViews.css
1 /*
2  * Copyright (C) 2012 Google 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 are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 .indexed-db-database-view {
32     -webkit-user-select: text;
33     margin-top: 5px;
34 }
35
36 .indexed-db-database-view .outline-disclosure {
37     padding-left: 0;
38 }
39
40 .indexed-db-database-view .outline-disclosure li {
41     white-space: nowrap;
42 }
43
44 .indexed-db-database-view .outline-disclosure .attribute-name {
45     color: rgb(33%, 33%, 33%);
46     display: inline-block;
47     margin-right: 0.5em;
48     font-weight: bold;
49     vertical-align: top;
50 }
51
52 .indexed-db-database-view .outline-disclosure .attribute-value {
53     display: inline;
54     margin-top: 1px;
55 }
56
57 .indexed-db-data-view .data-view-toolbar {
58     position: relative;
59     margin-top: -1px;
60     height: 24px;
61 }
62
63 .indexed-db-data-view .data-view-toolbar .back-button img {
64     content: url(Images/back.png);
65 }
66
67 .indexed-db-data-view .data-view-toolbar .forward-button img {
68     content: url(Images/forward.png);
69 }
70
71 .indexed-db-data-view .data-view-toolbar .key-input {
72     font-size: 10px;
73     margin-top: 3px;
74     margin-left: 3px;
75     width: 200px;
76 }
77
78 .indexed-db-data-view .data-grid-container {
79     top: 23px;
80 }
81
82 .indexed-db-data-view .data-grid {
83     height: 100%;
84     border: 0;
85 }
86
87 .indexed-db-data-view .data-grid .data-container tr:nth-child(even) {
88     background-color: white;
89 }
90
91 .indexed-db-data-view .data-grid .data-container tr:nth-child(odd) {
92     background-color: #EAF3FF;
93 }
94
95 .indexed-db-data-view .data-grid .data-container tr:nth-last-child(1) {
96     background-color: white;
97 }
98
99 .indexed-db-data-view .data-grid .data-container tr:nth-last-child(1) td {
100     border: 0;
101 }
102
103 .indexed-db-data-view .data-grid .data-container td {
104     height: 18px;
105 }
106
107 .indexed-db-data-view .data-grid .data-container td.value-column,
108 .indexed-db-data-view .data-grid .data-container td.key-column,
109 .indexed-db-data-view .data-grid .data-container td.primaryKey-column {
110     padding: 0;
111 }
112
113 .indexed-db-data-view .data-grid .data-container td.value-column div.primitive-value,
114 .indexed-db-data-view .data-grid .data-container td.key-column div.primitive-value,
115 .indexed-db-data-view .data-grid .data-container td.primaryKey-column div.primitive-value {
116     padding-left: 5px;
117     margin-top: 1px;
118 }
119
120 .indexed-db-data-view .data-grid .data-container td .section .header .title {
121     white-space: nowrap;
122     text-overflow: ellipsis;
123     overflow: hidden;
124 }