| OLD | NEW |
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 .indexeddb-summary { | 5 .indexeddb-summary { |
| 6 background-color: rgb(235, 239, 249); | 6 background-color: rgb(235, 239, 249); |
| 7 border-top: 1px solid rgb(156, 194, 239); | 7 border-top: 1px solid rgb(156, 194, 239); |
| 8 margin-bottom: 6px; | 8 margin-bottom: 6px; |
| 9 margin-top: 12px; | 9 margin-top: 12px; |
| 10 padding: 3px; | 10 padding: 3px; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 | 79 |
| 80 .indexeddb-transaction.created { | 80 .indexeddb-transaction.created { |
| 81 font-weight: italic; | 81 font-weight: italic; |
| 82 } | 82 } |
| 83 .indexeddb-transaction.started { | 83 .indexeddb-transaction.started { |
| 84 font-weight: bold; | 84 font-weight: bold; |
| 85 } | 85 } |
| 86 .indexeddb-transaction.running { | 86 .indexeddb-transaction.running { |
| 87 font-weight: bold; | 87 font-weight: bold; |
| 88 } | 88 } |
| 89 .indexeddb-transaction.committing { |
| 90 font-weight: bold; |
| 91 } |
| 89 .indexeddb-transaction.blocked { | 92 .indexeddb-transaction.blocked { |
| 90 } | 93 } |
| 91 | 94 |
| 92 .indexeddb-transaction.started .indexeddb-transaction-state { | 95 .indexeddb-transaction.started .indexeddb-transaction-state { |
| 93 background-color: rgb(249, 249, 235); | 96 background-color: rgb(249, 249, 235); |
| 94 } | 97 } |
| 95 .indexeddb-transaction.running .indexeddb-transaction-state { | 98 .indexeddb-transaction.running .indexeddb-transaction-state { |
| 96 background-color: rgb(235, 249, 235); | 99 background-color: rgb(235, 249, 235); |
| 97 } | 100 } |
| 101 .indexeddb-transaction.committing .indexeddb-transaction-state { |
| 102 background-color: rgb(235, 235, 249); |
| 103 } |
| 98 .indexeddb-transaction.blocked .indexeddb-transaction-state { | 104 .indexeddb-transaction.blocked .indexeddb-transaction-state { |
| 99 background-color: rgb(249, 235, 235); | 105 background-color: rgb(249, 235, 235); |
| 100 } | 106 } |
| 101 | 107 |
| 102 .controls a { | 108 .controls a { |
| 103 -webkit-margin-end: 16px; | 109 -webkit-margin-end: 16px; |
| 104 color: #777; | 110 color: #777; |
| 105 } | 111 } |
| OLD | NEW |