UNPKG

2.3 kBCSSView Raw
1.show-js-error {
2 font-family: Arial, sans-serif;
3 font-size: 12px;
4 position: fixed;
5 z-index: 16000000;
6 bottom: 15px;
7 left: 15px;
8 visibility: hidden;
9 min-width: 15em;
10 max-width: 40em;
11 transition: all 0.2s ease-out;
12 opacity: 0;
13 color: #000;
14 background: #ffc1cc;
15}
16.show-js-error_visible {
17 visibility: visible;
18 opacity: 1;
19}
20.show-js-error input {
21 padding: 1px 2px;
22}
23.show-js-error__title {
24 font-weight: bold;
25 padding: 4px 7px;
26 color: #fff;
27 background: #f66;
28}
29.show-js-error__message {
30 display: inline;
31 cursor: pointer;
32 border-bottom: 1px dotted #000;
33}
34.show-js-error a,
35.show-js-error a:visited {
36 text-decoration: underline;
37 color: #000;
38}
39.show-js-error a:hover {
40 text-decoration: underline;
41}
42.show-js-error__close {
43 font-size: 20px;
44 line-height: 20px;
45 position: absolute;
46 top: -1px;
47 right: 2px;
48 padding: 3px;
49 cursor: pointer;
50 color: #fff;
51}
52.show-js-error__body {
53 line-height: 19px;
54 padding: 5px 8px 5px 8px;
55}
56.show-js-error .show-js-error__filename,
57.show-js-error .show-js-error__ua,
58.show-js-error .show-js-error__help {
59 display: none;
60}
61.show-js-error__body_detailed .show-js-error__filename,
62.show-js-error__body_detailed .show-js-error__ua,
63.show-js-error__body_detailed .show-js-error__help {
64 display: block;
65}
66.show-js-error .show-js-error__additional-text {
67 color: #666;
68}
69.show-js-error .show-js-error__filename {
70 overflow-y: auto;
71 max-height: 15em;
72 margin: 3px 0 3px -2px;
73 padding: 5px;
74 white-space: pre-wrap;
75 border: 1px solid #faa;
76 background: #ffe1ec;
77}
78.show-js-error__help a {
79 font-size: 11px;
80 margin-right: 6px;
81}
82.show-js-error__actions {
83 padding: 3px 5px;
84 border-top: 1px solid #faa;
85}
86.show-js-error__actions::after {
87 font-size: 0;
88 display: block;
89 visibility: hidden;
90 clear: both;
91 height: 0;
92 content: ' ';
93}
94.show-js-error__arrows {
95 display: none;
96 float: left;
97 margin-left: 8px;
98}
99.show-js-error__arrows_visible {
100 display: block;
101}
102.show-js-error__copy,
103.show-js-error__send,
104.show-js-error__prev,
105.show-js-error__next,
106.show-js-error__num {
107 font-size: 11px;
108}
109.show-js-error__next {
110 margin-left: 1px;
111}
112.show-js-error__num {
113 margin-right: 5px;
114 margin-left: 5px;
115}
116.show-js-error__copy,
117.show-js-error__send {
118 float: left;
119 margin-right: 3px;
120}