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

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

Issue 2894083002: [DevTools] Set row background instead of the table (Closed)
Patch Set: Fixed a comment Created 3 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
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 30 matching lines...) Expand all
41 41
42 .indexed-db-data-view .data-view-toolbar .key-input { 42 .indexed-db-data-view .data-view-toolbar .key-input {
43 margin: auto 0; 43 margin: auto 0;
44 width: 200px; 44 width: 200px;
45 } 45 }
46 46
47 .indexed-db-data-view .data-grid { 47 .indexed-db-data-view .data-grid {
48 flex: auto; 48 flex: auto;
49 } 49 }
50 50
51 .indexed-db-data-view .data-grid .data-container tr:nth-child(even) {
52 background-color: white;
53 }
54
55 .indexed-db-data-view .data-grid .data-container tr:nth-child(odd) {
56 background-color: #EAF3FF;
57 }
58
59 .indexed-db-data-view .data-grid .data-container tr:nth-last-child(1) { 51 .indexed-db-data-view .data-grid .data-container tr:nth-last-child(1) {
60 background-color: white; 52 background-color: white;
61 } 53 }
62 54
63 .indexed-db-data-view .data-grid .data-container tr:nth-last-child(1) td { 55 .indexed-db-data-view .data-grid .data-container tr:nth-last-child(1) td {
64 border: 0; 56 border: 0;
65 } 57 }
66 58
67 .indexed-db-data-view .data-grid .data-container tr:nth-last-child(2) td { 59 .indexed-db-data-view .data-grid .data-container tr:nth-last-child(2) td {
68 border-bottom: 1px solid #aaa; 60 border-bottom: 1px solid #aaa;
(...skipping 15 matching lines...) Expand all
84 white-space: nowrap; 76 white-space: nowrap;
85 text-overflow: ellipsis; 77 text-overflow: ellipsis;
86 overflow: hidden; 78 overflow: hidden;
87 } 79 }
88 80
89 .indexed-db-key-path { 81 .indexed-db-key-path {
90 color: rgb(196, 26, 22); 82 color: rgb(196, 26, 22);
91 white-space: pre-wrap; 83 white-space: pre-wrap;
92 unicode-bidi: -webkit-isolate; 84 unicode-bidi: -webkit-isolate;
93 } 85 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698