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

Unified 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, 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..3abe0868761a7093ec38af60bb9856a9c18a9ce2
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/terminal/terminal.css
@@ -0,0 +1,40 @@
+/*
+ * 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-root {
+ background-color: #111;
+ color: #fafafa;
+ padding: 2px;
+ -webkit-user-select: text;
+ white-space: nowrap;
+}
+
+.terminal:focus .terminal-cursor {
+ background-color: #fafafa;
+}
+
+.terminal-error-message {
+ display: flex;
+ align-items: center;
+ padding: 10px;
+ background-color: rgba(255, 255, 255, 0.8);
+ justify-content: center;
+ font-size: 16px;
+ color: #222;
+}
+
+.terminal-error-message div {
+ padding-right: 10px;
+}
+
+a.webkit-html-resource-link {
+ color: inherit;
+ text-decoration: inherit;
+}
+
+a.webkit-html-resource-link:hover {
+ text-decoration: underline;
+}

Powered by Google App Engine
This is Rietveld 408576698