Newer
Older
html, body, #svgContainer, #svgImage {
Smit, P.J.M. (Peter, Student M-CS)
committed
width: 100%;
height: 100%;
}
body {
overflow: hidden;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}
polygon {
fill: none;
}
body.vscode-dark #svgContainer {
Smit, P.J.M. (Peter, Student M-CS)
committed
filter: invert(1);
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
}
#svgContainer {
position: fixed;
}
#buttonContainer {
background: var(--vscode-editorWidget-border);
display: flex;
padding: 10px;
}
#buttonContainer h3 {
align-self: center;
flex-grow: 1;
padding: 0;
}
#buttonContainer button {
height: fit-content;
width: fit-content;
display: flex;
margin-left: 5px;
padding: 2px;
}
#paramContainer {
background: var(--vscode-editorWidget-background);
z-index: 10;
position: fixed;
top: 10px;
right: 10px;
}
#paramList {
max-width: 250px;
max-height: 400px;
overflow-y: scroll;
list-style: none;
padding: 10px;
}
#paramList li {
display: flex;
justify-content: space-between;
padding: 0.15em 0;
height: 2.5em;
}
#paramList li label {
text-overflow: ellipsis;
overflow: hidden;
vertical-align: middle;
}
#paramList li input[type=text] {
max-width: 100px;
}
#paramList li input[type=checkbox] {
outline: none;