Javier López-Contreras | 6d1d72d | 2018-12-27 23:17:18 +0100 | [diff] [blame] | 1 | /* ********** HERE STARTS dialog.css ****** */
|
| 2 |
|
Javier López-Contreras | 6dc18a3 | 2018-12-26 12:40:04 +0100 | [diff] [blame] | 3 | #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;
|
avm99963 | 027b5b0 | 2018-12-28 02:31:46 +0100 | [diff] [blame] | 78 | }
|