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