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

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

Issue 14118002: Implement read-only indexedb-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch for landing, nits addressed Created 7 years, 8 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
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
5 .indexeddb-summary {
6 background-color: rgb(235, 239, 249);
7 border-top: 1px solid rgb(156, 194, 239);
8 margin-bottom: 6px;
9 margin-top: 12px;
10 padding: 3px;
11 font-weight: bold;
12 }
13
14 .indexeddb-item {
15 margin-bottom: 15px;
16 margin-top: 6px;
17 position: relative;
18 }
19
20 .indexeddb-url {
21 color: rgb(85, 102, 221);
22 display: inline-block;
23 max-width: 500px;
24 overflow: hidden;
25 padding-bottom: 1px;
26 padding-top: 4px;
27 text-decoration: none;
28 text-overflow: ellipsis;
29 white-space: nowrap;
30 }
31
32 .controls a {
33 -webkit-margin-end: 16px;
34 color: #777;
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698