annotate test_create/style.css @ 1175:b0340a2f64f2

Test Creator nearing completion. Some more GUI events needed. Generates valid XML, can create new or use old. Supports most features.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Thu, 11 Feb 2016 14:07:24 +0000
parents dd7ba3054bf9
children f4800ccc4d54
rev   line source
n@1170 1 div#blanket {
n@1170 2 z-index: 2;
n@1170 3 background-color: rgba(0,0,0,0.5);
n@1170 4 width: 100%;
n@1170 5 height: 100%;
n@1174 6 position: fixed;
n@1170 7 left: 0px;
n@1170 8 top: 0px;
n@1170 9 }
n@1170 10
n@1170 11 div#popupHolder {
n@1170 12 z-index: 3;
n@1170 13 background-color: rgba(255,255,255,1);
n@1170 14 width: 730px;
n@1170 15 height: 480px;
n@1174 16 position: fixed;
n@1170 17 border-radius: 10px;
n@1170 18 box-shadow: 0px 0px 50px #000;
n@1170 19 padding: 10px;
n@1170 20 }
n@1170 21
n@1170 22 div#popup-title-holder {
n@1170 23 width: 100%;
n@1170 24 height: 50px;
n@1170 25 font-size: 2em;
n@1170 26 }
n@1170 27
n@1170 28 button#popup-proceed {
n@1170 29 width: 60px;
n@1170 30 height: 27px;
n@1170 31 padding: 5px;
n@1170 32 position: absolute;
n@1170 33 right: 10px;
n@1170 34 bottom: 10px;
n@1170 35 }
n@1170 36
n@1173 37 div.drag-area {
n@1173 38 border: 3px black dashed;
n@1173 39 }
n@1173 40 div.drag-over {
n@1173 41 background-color: aquamarine;
n@1173 42 }
n@1173 43 div.drag-dropped {
n@1173 44 background-color: aqua;
n@1173 45 }
n@1173 46 div.drag-error {
n@1173 47 background-color: coral
n@1173 48 }
n@1173 49
n@1173 50 div#project-drop {
n@1173 51 width: 99%;
n@1173 52 height: 50px;
n@1173 53 margin: 10px 0px;
n@1173 54 }
n@1173 55
n@1170 56 div.popup-checkbox {
n@1170 57 padding: 5px;
n@1170 58 }
n@1170 59
n@1170 60 div.popup-checkbox input {
n@1170 61 margin: 0px 5px;
n@1170 62 }
n@1170 63
n@1175 64 div.popup-option-entry {
n@1175 65 padding: 5px 0px;
n@1175 66 border-bottom: 1px solid;
n@1175 67 }
n@1175 68
n@1170 69 div.disabled{
n@1170 70 color: rgb(100,100,100);
n@1170 71 }
n@1170 72
n@1170 73 div.node {
n@1170 74 float: left;
n@1170 75 padding: 10px;
n@1170 76 border: black 2px solid;
n@1170 77 border-radius: 10px;
n@1174 78 margin: 10px;
n@1170 79 min-width: 92%;
n@1170 80 }
n@1170 81 div.node-title {
n@1170 82 float: left;
n@1170 83 width: 100%;
n@1170 84 font-size: 2em;
n@1170 85 margin: 5px 0px;
n@1170 86 }
n@1170 87 div.node-attributes {
n@1175 88 min-width: 92%;
n@1170 89 float: left;
n@1170 90 padding: 10px;
n@1170 91 }
n@1170 92 div.attribute {
n@1170 93 float: left;
n@1170 94 margin-right: 10px;
n@1170 95 }
n@1170 96 div.node-children {
n@1170 97 float: left;
n@1175 98 min-width: 92%;
n@1170 99 }
n@1170 100 div.node-buttons {
n@1170 101 float: left;
n@1175 102 min-width: 92%;
n@1170 103 }
n@1170 104 div.attribute input {
n@1170 105 max-width: 100px;
n@1170 106 margin-right: 10px;
n@1170 107 }
n@1170 108 div.attribute input[type=number] {
n@1170 109 width: 80px;
n@1170 110 }