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

Unified 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, 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/terminal/terminal.css
diff --git a/third_party/WebKit/Source/devtools/front_end/terminal/terminal.css b/third_party/WebKit/Source/devtools/front_end/terminal/terminal.css
new file mode 100644
index 0000000000000000000000000000000000000000..51b23c64012ae92ff23c033fcf3e4cddac939ab1
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/terminal/terminal.css
@@ -0,0 +1,30 @@
+/*
+ * Copyright 2016 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+.terminal {
+ background-color: #111;
+ color: #fafafa;
+ padding: 2px;
+ -webkit-user-select: text;
+ white-space: nowrap;
+}
+
+.terminal:focus .terminal-cursor {
+ background-color: #fafafa;
+}
+
+.disabled .terminal {
+ opacity: 0.5
+}
+
+a {
+ color: inherit;
+ text-decoration: inherit;
+}
+
+a:hover {
+ text-decoration: underline;
+}

Powered by Google App Engine
This is Rietveld 408576698