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

Side by Side Diff: chrome/browser/resources/extensions/extension_error_overlay.css

Issue 2381363002: Set minimum height of error list in Extension debugging UI (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 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 4
5 #extension-error-overlay { 5 #extension-error-overlay {
6 max-width: 100%; 6 max-width: 100%;
7 } 7 }
8 8
9 #extension-error-overlay .content-area { 9 #extension-error-overlay .content-area {
10 display: flex; 10 display: flex;
11 flex-direction: column; 11 flex-direction: column;
12 } 12 }
13 13
14 #extension-error-overlay .extension-error-list { 14 #extension-error-overlay .extension-error-list {
15 border: 1px solid #ccc; 15 border: 1px solid #ccc;
16 margin-bottom: 3px; 16 margin-bottom: 3px;
17 min-height: 48px;
17 overflow-y: auto; 18 overflow-y: auto;
18 } 19 }
19 20
20 .extension-error-overlay-runtime-content { 21 .extension-error-overlay-runtime-content {
21 flex: none; 22 flex: none;
22 } 23 }
23 24
24 #extension-error-overlay .extension-code-highlighted-source { 25 #extension-error-overlay .extension-code-highlighted-source {
25 background-color: rgba(255, 195, 200, 255); 26 background-color: rgba(255, 195, 200, 255);
26 } 27 }
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 padding-top: 6px; 63 padding-top: 6px;
63 } 64 }
64 65
65 .extension-error-overlay-stack-trace-list li:hover { 66 .extension-error-overlay-stack-trace-list li:hover {
66 background-color: #eee; 67 background-color: #eee;
67 } 68 }
68 69
69 .extension-error-overlay-stack-trace-list li.extension-error-active { 70 .extension-error-overlay-stack-trace-list li.extension-error-active {
70 background-color: rgba(0, 100, 255, 0.1); 71 background-color: rgba(0, 100, 255, 0.1);
71 } 72 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698