blob: 7a5782d4ce61f291594fb468ed9c4398f91348e4 [file] [log] [blame]
Javier López-Contreras6dc18a32018-12-26 12:40:04 +01001#dialog {
2 position: absolute;
3 top: 0px;
4 left: 0px;
5 width: 300px;
6 height: 100%;
7 background-color: white;
8 color: black;
9 z-index: 120;
10 overflow-y: auto;
11}
12
13#backdrop {
14 display: none;
15 position: absolute;
16 top: 0;
17 left: 0;
18 width: 100%;
19 height: 100%;
20 background-color: rgba(0, 0, 0, .5);
21 z-index: 110;
22}
23
24#dialog-vertex, #dialog-edge {
25 padding: 8px;
26 user-select: auto;
27}
28
29#dialog h2 {
30 font-weight: bold;
31 font-size: 20px;
32}
33
34#dialog h3 {
35 font-weight: bold;
36 font-size: 16px;
37 margin-bottom: 0;
38}
39
40#quit-dialog, #quit2-dialog {
41 position: absolute;
42 top: 8px;
43 right: 8px;
44}
45
46#min-dialog, #max-dialog {
47 position: absolute;
48 top: 8px;
49 right: 48px;
50}
51
52#min-dialog {
53 display: none;
54}
55
56#summary-dialog {
57 position: absolute;
58 top: 0px;
59 left: 0px;
60 width: 100%;
61 height: 100px;
62 background-color: white;
63 color: black;
64 z-index: 120;
65}
66
67#summary-vertex {
68 padding: 8px;
69 user-select: auto;
70}
71
72#summary-dialog h2 {
73 font-weight: bold;
74 font-size: 20px;
75 margin: 0;
avm99963027b5b02018-12-28 02:31:46 +010076}