File tree Expand file tree Collapse file tree 4 files changed +45
-47
lines changed
dash/dash-renderer/src/components/error Expand file tree Collapse file tree 4 files changed +45
-47
lines changed Original file line number Diff line number Diff line change 12
12
margin-right : 10px ;
13
13
}
14
14
15
- .dash-debug-menu__upgrade-button {
16
- background-color : # a159ff0d ;
17
- border : 1px solid # 864ad433 ;
18
- color : # 7f4bc4 ;
19
- margin-left : 10px ;
20
- }
21
-
22
- .dash-debug-menu__upgrade-button : hover {
23
- background-color : # 864ad433 ;
24
- }
25
-
26
15
.dash-fe-error__icon-x : hover {
27
16
color : # a1a9b5 ;
28
17
}
53
42
height : 28px ;
54
43
margin : 0px 8px ;
55
44
}
56
- .dash-debug-menu__error-count {
57
- font-size : 12px ;
58
- color : # fff ;
59
- background-color : # c73a3a ;
60
- padding : 3px 5px ;
61
- border-radius : 3px ;
62
- margin : 0 5px ;
63
- }
64
45
.dash-fe-error-top__group : first-child {
65
46
/*
66
47
* 77% is the maximum space allowed based off of the other elements
Original file line number Diff line number Diff line change 68
68
margin : 0 5px ;
69
69
}
70
70
71
- .dash-debug-menu__upgrade-tooltip button ,
72
- .dash-debug-menu__upgrade-tooltip a {
73
- background : white;
74
- border : none;
75
- padding : 2px 5px ;
76
- white-space : nowrap;
77
- color : # 7f4bc4 ;
78
- font-size : 10pt ;
79
- text-decoration : none;
80
- font-family : none;
81
- cursor : pointer;
82
- display : flex;
83
- }
84
-
85
- .dash-debug-menu__upgrade-tooltip : after {
86
- content : ' ' ;
87
- position : absolute;
88
- top : 100% ;
89
- left : 50% ;
90
- margin-left : -5px ;
91
- border-width : 10px ;
92
- border-style : solid;
93
- border-color : white transparent transparent transparent;
94
- }
95
-
96
71
.dash-debug-menu__content {
97
72
display : flex;
98
73
align-items : stretch;
156
131
color : rgb (50 , 50 , 50 );
157
132
}
158
133
159
- .dash-debug-error-count {
160
- display : block;
161
- margin : 0 3px ;
134
+ .dash-debug-menu__error-count {
135
+ font-size : 12px ;
136
+ color : # fff ;
137
+ background-color : # c73a3a ;
138
+ padding : 3px 5px ;
139
+ border-radius : 3px ;
140
+ margin : 0 5px ;
162
141
}
163
142
164
143
.dash-debug-disconnected {
Original file line number Diff line number Diff line change
1
+
2
+ .dash-debug-menu__upgrade-tooltip button ,
3
+ .dash-debug-menu__upgrade-tooltip a {
4
+ background : white;
5
+ border : none;
6
+ padding : 2px 5px ;
7
+ white-space : nowrap;
8
+ color : # 7f4bc4 ;
9
+ font-size : 10pt ;
10
+ text-decoration : none;
11
+ font-family : none;
12
+ cursor : pointer;
13
+ display : flex;
14
+ }
15
+
16
+ .dash-debug-menu__upgrade-tooltip : after {
17
+ content : ' ' ;
18
+ position : absolute;
19
+ top : 100% ;
20
+ left : 50% ;
21
+ margin-left : -5px ;
22
+ border-width : 10px ;
23
+ border-style : solid;
24
+ border-color : white transparent transparent transparent;
25
+ }
26
+
27
+ .dash-debug-menu__upgrade-button {
28
+ background-color : # a159ff0d ;
29
+ border : 1px solid # 864ad433 ;
30
+ color : # 7f4bc4 ;
31
+ margin-left : 10px ;
32
+ }
33
+
34
+ .dash-debug-menu__upgrade-button : hover {
35
+ background-color : # 864ad433 ;
36
+ }
Original file line number Diff line number Diff line change 1
1
import React , { useEffect , useState } from 'react' ;
2
2
3
+ import './VersionInfo.css' ;
4
+
3
5
const DAY_IN_MS = 86400000 ;
4
6
5
7
function compareVersions ( v1 , v2 ) {
You can’t perform that action at this time.
0 commit comments