OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 15 matching lines...) Expand all Loading... |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 .indexed-db-database-view { | 31 .indexed-db-database-view { |
32 -webkit-user-select: text; | 32 -webkit-user-select: text; |
33 margin-top: 5px; | 33 margin-top: 5px; |
34 } | 34 } |
35 | 35 |
36 .indexed-db-database-view .outline-disclosure { | 36 .indexed-db-database-view .header-row { |
37 padding-left: 0; | 37 white-space: nowrap; |
| 38 margin: 0 0 2px 10px; |
38 } | 39 } |
39 | 40 |
40 .indexed-db-database-view .outline-disclosure li { | 41 .indexed-db-database-view .header-row .attribute-name { |
41 white-space: nowrap; | |
42 } | |
43 | |
44 .indexed-db-database-view .outline-disclosure .attribute-name { | |
45 color: rgb(33%, 33%, 33%); | 42 color: rgb(33%, 33%, 33%); |
46 display: inline-block; | 43 display: inline-block; |
47 margin-right: 0.5em; | 44 margin-right: 0.5em; |
48 font-weight: bold; | 45 font-weight: bold; |
49 vertical-align: top; | 46 vertical-align: top; |
50 } | 47 } |
51 | 48 |
52 .indexed-db-database-view .outline-disclosure .attribute-value { | 49 .indexed-db-database-view .header-row .attribute-value { |
53 display: inline; | 50 display: inline; |
54 margin-top: 1px; | 51 margin-top: 1px; |
55 } | 52 } |
56 | 53 |
57 .indexed-db-data-view .data-view-toolbar { | 54 .indexed-db-data-view .data-view-toolbar { |
58 position: relative; | 55 position: relative; |
59 background-color: #eee; | 56 background-color: #eee; |
60 border-bottom: 1px solid #ccc; | 57 border-bottom: 1px solid #ccc; |
61 } | 58 } |
62 | 59 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 white-space: nowrap; | 103 white-space: nowrap; |
107 text-overflow: ellipsis; | 104 text-overflow: ellipsis; |
108 overflow: hidden; | 105 overflow: hidden; |
109 } | 106 } |
110 | 107 |
111 .indexed-db-key-path { | 108 .indexed-db-key-path { |
112 color: rgb(196, 26, 22); | 109 color: rgb(196, 26, 22); |
113 white-space: pre-wrap; | 110 white-space: pre-wrap; |
114 unicode-bidi: -webkit-isolate; | 111 unicode-bidi: -webkit-isolate; |
115 } | 112 } |
OLD | NEW |