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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/resources/indexedDBViews.css

Issue 2654483004: [DevTools] Provide a way to delete Indexed DBs (Closed)
Patch Set: Moved the confirm dialog Created 3 years, 10 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
OLDNEW
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
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 .header-row {
37 white-space: nowrap;
38 margin: 0 0 2px 10px;
39 }
40
41 .indexed-db-database-view .header-row .attribute-name {
42 color: rgb(33%, 33%, 33%);
43 display: inline-block;
44 margin-right: 0.5em;
45 font-weight: bold;
46 vertical-align: top;
47 }
48
49 .indexed-db-database-view .header-row .attribute-value {
50 display: inline;
51 margin-top: 1px;
52 }
53
54 .indexed-db-data-view .data-view-toolbar { 36 .indexed-db-data-view .data-view-toolbar {
55 position: relative; 37 position: relative;
56 background-color: #eee; 38 background-color: #eee;
57 border-bottom: 1px solid #ccc; 39 border-bottom: 1px solid #ccc;
58 } 40 }
59 41
60 .indexed-db-data-view .data-view-toolbar .key-input { 42 .indexed-db-data-view .data-view-toolbar .key-input {
61 font-size: 11px; 43 font-size: 11px;
62 margin: auto 0; 44 margin: auto 0;
63 width: 200px; 45 width: 200px;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 white-space: nowrap; 85 white-space: nowrap;
104 text-overflow: ellipsis; 86 text-overflow: ellipsis;
105 overflow: hidden; 87 overflow: hidden;
106 } 88 }
107 89
108 .indexed-db-key-path { 90 .indexed-db-key-path {
109 color: rgb(196, 26, 22); 91 color: rgb(196, 26, 22);
110 white-space: pre-wrap; 92 white-space: pre-wrap;
111 unicode-bidi: -webkit-isolate; 93 unicode-bidi: -webkit-isolate;
112 } 94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698