Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: content/browser/resources/indexed_db/indexeddb_internals.css

Issue 327943004: Add "committing" status to about://indexeddb-internals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/browser/resources/indexed_db/indexeddb_internals.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/resources/indexed_db/indexeddb_internals.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698