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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 .indexed-db-database-view .outline-disclosure .attribute-value { | 52 .indexed-db-database-view .outline-disclosure .attribute-value { |
53 display: inline; | 53 display: inline; |
54 margin-top: 1px; | 54 margin-top: 1px; |
55 } | 55 } |
56 | 56 |
57 .indexed-db-data-view .data-view-toolbar { | 57 .indexed-db-data-view .data-view-toolbar { |
58 position: relative; | 58 position: relative; |
59 border-top: none; | 59 border-top: none; |
60 height: 24px; | 60 height: 24px; |
61 padding: 1px; | 61 padding: 1px; |
| 62 background-color: #eee; |
| 63 border-bottom: 1px solid #ccc; |
62 } | 64 } |
63 | 65 |
64 .indexed-db-data-view .data-grid-container { | 66 .indexed-db-data-view .data-grid-container { |
65 top: 24px; | 67 top: 24px; |
66 } | 68 } |
67 | 69 |
68 .indexed-db-data-view .data-view-toolbar .back-button img { | 70 .indexed-db-status-bar-back-button, |
69 content: url(Images/back.png); | 71 .indexed-db-status-bar-forward-button { |
| 72 background-repeat: no-repeat; |
| 73 border: 3px solid transparent; |
70 } | 74 } |
71 | 75 |
72 .indexed-db-data-view .data-view-toolbar .forward-button img { | 76 .indexed-db-status-bar-back-button:disabled, |
73 content: url(Images/forward.png); | 77 .indexed-db-status-bar-forward-button:disabled { |
| 78 opacity: 0.5; |
| 79 } |
| 80 |
| 81 .indexed-db-status-bar-back-button { |
| 82 background-image: url(Images/back.png); |
| 83 } |
| 84 |
| 85 .indexed-db-status-bar-forward-button { |
| 86 background-image: url(Images/forward.png); |
| 87 } |
| 88 |
| 89 .indexed-db-status-bar-back-button .glyph, |
| 90 .indexed-db-status-bar-forward-button .glyph { |
| 91 display: none; |
74 } | 92 } |
75 | 93 |
76 .indexed-db-data-view .data-view-toolbar .key-input { | 94 .indexed-db-data-view .data-view-toolbar .key-input { |
77 font-size: 11px; | 95 font-size: 11px; |
78 margin: auto 0; | 96 margin: auto 0; |
79 width: 200px; | 97 width: 200px; |
80 } | 98 } |
81 | 99 |
82 .indexed-db-data-view .data-grid { | 100 .indexed-db-data-view .data-grid { |
83 height: 100%; | 101 height: 100%; |
(...skipping 26 matching lines...) Expand all Loading... |
110 | 128 |
111 .indexed-db-data-view .primitive-value { | 129 .indexed-db-data-view .primitive-value { |
112 padding-top: 1px; | 130 padding-top: 1px; |
113 } | 131 } |
114 | 132 |
115 .indexed-db-data-view .data-grid .data-container td .section .header .title { | 133 .indexed-db-data-view .data-grid .data-container td .section .header .title { |
116 white-space: nowrap; | 134 white-space: nowrap; |
117 text-overflow: ellipsis; | 135 text-overflow: ellipsis; |
118 overflow: hidden; | 136 overflow: hidden; |
119 } | 137 } |
OLD | NEW |