blob: adc82238ea7eb5dfaaa288adf4f8c0678e74d233 (
plain)
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
|
.scriptingRepl-outerContainer {
background-color: whitesmoke;
height: 100%;
display: flex;
flex-direction: column;
}
.scriptingRepl-resultContainer {
padding-bottom: 5px;
}
.scriptingRepl-commandInput {
width: 100%;
}
.scriptingRepl-commandResult,
.scriptingRepl-commandString {
overflow-wrap: break-word;
}
.scriptingRepl-commandsContainer {
flex: 1 1 auto;
overflow-y: scroll;
height: 30px;
}
.documentIcon-outerDiv {
background-color: white;
border-width: 1px;
border-style: solid;
border-radius: 25%;
padding: 2px;
}
.documentIcon-outerDiv:hover {
opacity: 0.3;
}
.scriptingObject-icon {
padding: 3px;
cursor: pointer;
}
.scriptingObject-iconCollapsed {
padding-left: 4px;
padding-right: 5px;
}
.scriptingObject-fields {
padding-left: 10px;
}
.scriptingObject-leaf {
margin-left: 15px;
}
|