This repository was archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathFrontEndError.css
114 lines (105 loc) · 2.31 KB
/
FrontEndError.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
.error-container {
margin-top: 10px;
}
.dash-fe-errors {
min-width: 386px;
max-width: 650px;
max-height: 450px;
display: inline-block;
}
.dash-fe-error__icon-error {
width: 20px;
height: 20px;
display: inline-block;
margin-right: 16px;
}
.dash-fe-error__icon-close {
width: 10px;
height: 10px;
position: absolute;
right: 12px;
top: 12px;
display: inline-block;
}
.dash-fe-error__icon-arrow {
width: 8px;
height: 28px;
margin: 0px 8px;
}
.dash-fe-error-top {
height: 20px;
display: flex;
justify-content: space-between;
width: 100%;
cursor: pointer;
}
.dash-fe-error-top__group:first-child {
/*
* 77% is the maximum space allowed based off of the other elements
* in the top part of the error container (timestamp & collapse arrow).
* this was manually determined */
width: 77%;
}
.dash-fe-error-top__group {
display: inline-flex;
align-items: center;
}
.dash-fe-error__title {
text-align: left;
margin: 0px;
padding: 0px;
font-size: 14px;
display: inline-block;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.dash-fe-error__timestamp {
margin-right: 20px;
}
.dash-fe-error__collapse--flipped {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.dash-fe-error__info_title {
margin: 0;
color: #506784;
font-size: 16px;
background-color: #f3f6fa;
border: 2px solid #dfe8f3;
box-sizing: border-box;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
padding: 10px;
}
.dash-fe-error__info {
border: 1px solid #dfe8f3;
margin: 0 0 1em 0;
padding: 10px;
background-color: white;
border: 2px solid #dfe8f3;
border-radius: 0px 0px 4px 4px;
color: #506784;
overflow: scroll;
}
.dash-fe-error__curved {
border-radius: 4px;
}
.dash-fe-error__curved-top {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-width: 0px;
}
.dash-fe-error__curved-bottom {
border-radius-bottom-left: 4px;
border-radius-bottom-right: 4px;
}
.dash-be-error__st {
background-color: #fdf3f4;
min-width: 386px;
max-width: 650px;
/* iframe container handles the scrolling */
overflow: hidden;
display: inline-block;
}