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

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

Issue 2372303003: DevTools: introduce external service client (behind experiment). (Closed)
Patch Set: external linter 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
OLDNEW
(Empty)
1 /*
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
4 * found in the LICENSE file.
5 */
6
7 .terminal-root {
8 background-color: #111;
9 color: #fafafa;
10 padding: 2px;
11 -webkit-user-select: text;
12 white-space: nowrap;
13 }
14
15 .terminal:focus .terminal-cursor {
16 background-color: #fafafa;
17 }
18
19 .terminal-error-message {
20 display: flex;
21 align-items: center;
22 padding: 10px;
23 background-color: rgba(255, 255, 255, 0.8);
24 justify-content: center;
25 font-size: 16px;
26 color: #222;
27 }
28
29 .terminal-error-message div {
30 padding-right: 10px;
31 }
32
33 a.webkit-html-resource-link {
34 color: inherit;
35 text-decoration: inherit;
36 }
37
38 a.webkit-html-resource-link:hover {
39 text-decoration: underline;
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698