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

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

Issue 2651083002: DevTools: do not override font size to 11px (Closed)
Patch Set: more 11pxs 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 margin-top: 1px; 51 margin-top: 1px;
52 } 52 }
53 53
54 .indexed-db-data-view .data-view-toolbar { 54 .indexed-db-data-view .data-view-toolbar {
55 position: relative; 55 position: relative;
56 background-color: #eee; 56 background-color: #eee;
57 border-bottom: 1px solid #ccc; 57 border-bottom: 1px solid #ccc;
58 } 58 }
59 59
60 .indexed-db-data-view .data-view-toolbar .key-input { 60 .indexed-db-data-view .data-view-toolbar .key-input {
61 font-size: 11px;
62 margin: auto 0; 61 margin: auto 0;
63 width: 200px; 62 width: 200px;
64 } 63 }
65 64
66 .indexed-db-data-view .data-grid { 65 .indexed-db-data-view .data-grid {
67 flex: auto; 66 flex: auto;
68 } 67 }
69 68
70 .indexed-db-data-view .data-grid .data-container tr:nth-child(even) { 69 .indexed-db-data-view .data-grid .data-container tr:nth-child(even) {
71 background-color: white; 70 background-color: white;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 white-space: nowrap; 102 white-space: nowrap;
104 text-overflow: ellipsis; 103 text-overflow: ellipsis;
105 overflow: hidden; 104 overflow: hidden;
106 } 105 }
107 106
108 .indexed-db-key-path { 107 .indexed-db-key-path {
109 color: rgb(196, 26, 22); 108 color: rgb(196, 26, 22);
110 white-space: pre-wrap; 109 white-space: pre-wrap;
111 unicode-bidi: -webkit-isolate; 110 unicode-bidi: -webkit-isolate;
112 } 111 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698