| 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;
|
| +}
|
|
|