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

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: 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 {
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 .disabled .terminal {
20 opacity: 0.5
21 }
22
23 a {
24 color: inherit;
25 text-decoration: inherit;
26 }
27
28 a:hover {
29 text-decoration: underline;
30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698