UNPKG

1.01 kBCSSView Raw
1/* Copyright (c) Jupyter Development Team.
2 * Distributed under the terms of the Modified BSD License.
3 */
4
5.jupyter-widgets-disconnected::before {
6 content: '\f127'; /* chain-broken */
7 display: inline-block;
8 font: normal normal 900 14px/1 'Font Awesome 5 Free', 'FontAwesome';
9 text-rendering: auto;
10 -webkit-font-smoothing: antialiased;
11 -moz-osx-font-smoothing: grayscale;
12 color: #d9534f;
13 padding: 3px;
14 align-self: flex-start;
15}
16
17.jupyter-widgets-error-widget {
18 display: flex;
19 flex-direction: column;
20 justify-content: center;
21 height: 100%;
22 border: solid 1px red;
23 margin: 0 auto;
24}
25
26.jupyter-widgets-error-widget.icon-error {
27 min-width: var(--jp-widgets-inline-width-short);
28}
29.jupyter-widgets-error-widget.text-error {
30 min-width: calc(2 * var(--jp-widgets-inline-width));
31 min-height: calc(3 * var(--jp-widgets-inline-height));
32}
33
34.jupyter-widgets-error-widget p {
35 text-align: center;
36}
37
38.jupyter-widgets-error-widget.text-error pre::first-line {
39 font-weight: bold;
40}