-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.scss
More file actions
77 lines (67 loc) · 1.68 KB
/
Copy pathstyle.scss
File metadata and controls
77 lines (67 loc) · 1.68 KB
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
$fonts: 'Calibri', 'Ubuntu', 'Segoe UI', 'Tahoma', sans-serif;
#reactables-watcher {
position: fixed;
right: 0;
top: 0;
height: 100vh;
background-color: #fafafa;
width: 300px;
font-family: $fonts;
overflow-y: auto;
word-break: break-all;
font-weight: normal;
font-size: 16px;
display: none;
z-index: 2147483647;
user-select: none;
&:after {
content: '';
top: 0;
background-color: rgba(128, 128, 128, 0.3);
position: absolute;
left: 0;
width: 2px;
height: 100%;
cursor: col-resize;
}
&.reactables-watcher-show {
display: block;
}
.reactables-watcher-wrapper {
&.reactables-watcher-hovered {
.reactables-watcher-title {
background-color: gray;
color: white;
}
}
.reactables-watcher-title {
background-color: gainsboro;
border-bottom: 1px solid gray;
padding: 5px;
color: dimgray;
cursor: pointer;
&:hover {
background-color: #a8a8a8;
}
}
.reactables-watcher-list {
.json-container {
background-color: transparent;
font-family: $fonts;
.line {
flex-wrap: wrap;
}
.json-key {
margin-right: 0;
}
}
}
}
}
.reactables-watcher-focus {
position: absolute;
z-index: 2147483646;
pointer-events: none;
background: rgba(126, 183, 253, 0.3);
border: 1px solid rgba(126, 183, 253, 0.7);
}