UNPKG

729 BCSSView Raw
1/*-----------------------------------------------------------------------------
2| Copyright (c) Jupyter Development Team.
3| Distributed under the terms of the Modified BSD License.
4|----------------------------------------------------------------------------*/
5
6.jp-MainAreaWidget > :focus {
7 outline: none;
8}
9
10.jp-MainAreaWidget .jp-MainAreaWidget-error {
11 padding: 6px;
12}
13
14.jp-MainAreaWidget .jp-MainAreaWidget-error > pre {
15 width: auto;
16 padding: 10px;
17 background: var(--jp-error-color3);
18 border: var(--jp-border-width) solid var(--jp-error-color1);
19 border-radius: var(--jp-border-radius);
20 color: var(--jp-ui-font-color1);
21 font-size: var(--jp-ui-font-size1);
22 white-space: pre-wrap;
23 word-wrap: break-word;
24}