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

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: 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 { 36 .report-row {
pfeldman 2017/01/24 23:14:21 Don't override report view, it'll be hard to refac
eostroukhov 2017/01/25 19:56:35 No need to override/customize. Removed all unneces
37 white-space: nowrap; 37 white-space: nowrap;
38 margin: 0 0 2px 10px; 38 margin: 0 0 2px 10px;
39 } 39 }
40 40
41 .indexed-db-database-view .header-row .attribute-name { 41 .report-row {
42 white-space: nowrap;
43 margin: 0 0 2px 10px;
44 }
45
46 .report-row .attribute-name {
42 color: rgb(33%, 33%, 33%); 47 color: rgb(33%, 33%, 33%);
43 display: inline-block; 48 display: inline-block;
44 margin-right: 0.5em; 49 margin-right: 0.5em;
45 font-weight: bold; 50 font-weight: bold;
46 vertical-align: top; 51 vertical-align: top;
47 } 52 }
48 53
49 .indexed-db-database-view .header-row .attribute-value { 54 .report-row .attribute-value {
50 display: inline; 55 display: inline;
51 margin-top: 1px; 56 margin-top: 1px;
52 } 57 }
53 58
54 .indexed-db-data-view .data-view-toolbar { 59 .indexed-db-data-view .data-view-toolbar {
55 position: relative; 60 position: relative;
56 background-color: #eee; 61 background-color: #eee;
57 border-bottom: 1px solid #ccc; 62 border-bottom: 1px solid #ccc;
58 } 63 }
59 64
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 white-space: nowrap; 108 white-space: nowrap;
104 text-overflow: ellipsis; 109 text-overflow: ellipsis;
105 overflow: hidden; 110 overflow: hidden;
106 } 111 }
107 112
108 .indexed-db-key-path { 113 .indexed-db-key-path {
109 color: rgb(196, 26, 22); 114 color: rgb(196, 26, 22);
110 white-space: pre-wrap; 115 white-space: pre-wrap;
111 unicode-bidi: -webkit-isolate; 116 unicode-bidi: -webkit-isolate;
112 } 117 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698