forked from Happy-Ferret/weh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweh-natmsg-shell.scss
More file actions
69 lines (60 loc) · 1.12 KB
/
weh-natmsg-shell.scss
File metadata and controls
69 lines (60 loc) · 1.12 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
.natmsgsh {
background-color: #f8f8f8;
height: 100%;
display: flex;
flex-direction: column;
.natmsgsh-result {
flex: 1 1 auto;
background-color: #fff;
border-radius: 3px;
margin: 3px 3px 0 3px;
border: 1px solid #ddd;
padding: 4px;
overflow: auto;
.natmsgsh-call {
font-weight: 800;
}
.natmsgsh-return {
color: #888;
}
.natmsgsh-error {
color: #f88;
}
.natmsgsh-item {
span.natmsgsh-ret-marker {
margin-right: 8px;
}
.icon-container {
font-size: 1.3em;
}
.object-container {
font-size: .8em;
}
}
.react-json-view.scalar-view {
font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
display: inline-block;
color: rgb(0, 43, 54);
font-size: .9rem;
}
}
.natmsgsh-input {
flex: 0 0 auto;
padding: 3px;
display: flex;
flex-direction: row;
input {
flex: 1 1 auto;
}
input.syntax-error {
background-color: #f88;
}
input.syntax-ok {
background-color: #8f8;
}
button {
flex: 0 0 auto;
margin-left: 3px;
}
}
}