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

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

Issue 2527763003: [DevTools] Turn links into spans to prevent default behavior. (Closed)
Patch Set: fixed comments Created 4 years 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 2016 The Chromium Authors. All rights reserved. 2 * Copyright 2016 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .terminal-root { 7 .terminal-root {
8 background-color: #111; 8 background-color: #111;
9 color: #fafafa; 9 color: #fafafa;
10 padding: 2px; 10 padding: 2px;
(...skipping 12 matching lines...) Expand all
23 background-color: rgba(255, 255, 255, 0.8); 23 background-color: rgba(255, 255, 255, 0.8);
24 justify-content: center; 24 justify-content: center;
25 font-size: 16px; 25 font-size: 16px;
26 color: #222; 26 color: #222;
27 } 27 }
28 28
29 .terminal-error-message div { 29 .terminal-error-message div {
30 padding-right: 10px; 30 padding-right: 10px;
31 } 31 }
32 32
33 a.webkit-html-resource-link { 33 .devtools-link {
34 color: inherit; 34 color: inherit;
35 text-decoration: inherit; 35 text-decoration: inherit;
36 } 36 }
37 37
38 a.webkit-html-resource-link:hover { 38 .devtools-link:hover {
39 text-decoration: underline; 39 text-decoration: underline;
40 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698