annotate test_create/style.css @ 626:a2d823a093e2 Dev_main

Possible fix for #1673 and #1674
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Mon, 21 Mar 2016 14:31:43 +0000
parents 6edb164f15b8
children
rev   line source
n@501 1 div#blanket {
n@501 2 z-index: 2;
n@501 3 background-color: rgba(0,0,0,0.5);
n@501 4 width: 100%;
n@501 5 height: 100%;
n@505 6 position: fixed;
n@501 7 left: 0px;
n@501 8 top: 0px;
n@501 9 }
n@501 10
n@501 11 div#popupHolder {
n@501 12 z-index: 3;
n@501 13 background-color: rgba(255,255,255,1);
n@501 14 width: 730px;
n@501 15 height: 480px;
n@505 16 position: fixed;
n@501 17 border-radius: 10px;
n@501 18 box-shadow: 0px 0px 50px #000;
n@501 19 padding: 10px;
n@501 20 }
n@501 21
n@501 22 div#popup-title-holder {
n@501 23 width: 100%;
n@501 24 height: 50px;
n@501 25 font-size: 2em;
n@501 26 }
n@501 27
n@541 28 button.popup-button {
n@501 29 width: 60px;
n@501 30 height: 27px;
n@501 31 padding: 5px;
n@501 32 position: absolute;
n@541 33 bottom: 10px;
n@541 34 }
n@541 35
n@541 36 button#popup-proceed {
n@501 37 right: 10px;
n@541 38 }
n@541 39
n@541 40 button#popup-back {
n@541 41 left: 10px;
n@501 42 }
n@501 43
n@504 44 div.drag-area {
n@504 45 border: 3px black dashed;
n@504 46 }
n@504 47 div.drag-over {
n@504 48 background-color: aquamarine;
n@504 49 }
n@504 50 div.drag-dropped {
n@504 51 background-color: aqua;
n@504 52 }
n@504 53 div.drag-error {
n@504 54 background-color: coral
n@504 55 }
n@504 56
n@504 57 div#project-drop {
n@504 58 width: 99%;
n@504 59 height: 50px;
n@504 60 margin: 10px 0px;
n@504 61 }
n@504 62
n@501 63 div.popup-checkbox {
n@501 64 padding: 5px;
n@501 65 }
n@501 66
n@501 67 div.popup-checkbox input {
n@501 68 margin: 0px 5px;
n@501 69 }
n@501 70
n@506 71 div.popup-option-entry {
n@506 72 padding: 5px 0px;
n@506 73 border-bottom: 1px solid;
n@506 74 }
n@506 75
n@501 76 div.disabled{
n@501 77 color: rgb(100,100,100);
n@501 78 }
n@501 79
n@535 80
n@535 81 div#content > div.node{
n@535 82 background-color: rgb(200,228,151);
n@535 83 }
n@535 84
n@535 85 div#content > div#setup{
n@535 86 background-color: coral;
n@535 87 }
n@535 88
n@535 89
n@501 90 div.node {
n@501 91 float: left;
n@501 92 padding: 10px;
n@501 93 border: black 2px solid;
n@501 94 border-radius: 10px;
n@505 95 margin: 10px;
n@501 96 min-width: 92%;
n@512 97 background-color: rgba(255,255,255,0.5);
n@501 98 }
n@501 99 div.node-title {
n@501 100 float: left;
n@501 101 width: 100%;
n@501 102 font-size: 2em;
n@501 103 margin: 5px 0px;
n@501 104 }
n@501 105 div.node-attributes {
n@506 106 min-width: 92%;
n@535 107 float: none;
n@501 108 padding: 10px;
n@501 109 }
n@501 110 div.attribute {
n@501 111 float: left;
n@501 112 margin-right: 10px;
n@501 113 }
n@501 114 div.node-children {
n@501 115 float: left;
n@506 116 min-width: 92%;
n@501 117 }
n@501 118 div.node-buttons {
n@501 119 float: left;
n@506 120 min-width: 92%;
n@501 121 }
n@501 122 div.attribute input {
n@535 123 max-width: 100%;
n@535 124 width: 300px;
n@501 125 margin-right: 10px;
n@501 126 }
n@501 127 div.attribute input[type=number] {
n@501 128 width: 80px;
n@535 129 }
n@535 130 div.attribute input[type=radio], div.attribute input[type=checkbox]{
n@535 131 width: 10px;
n@535 132 }
n@573 133 input:disabled+label{
n@535 134 text-decoration: line-through;
n@617 135 }
n@617 136
n@617 137 div.survey-entry-attribute {
n@617 138 margin: 10px 0px;
n@617 139 border: 1px gray solid;
n@617 140 border-radius: 5px;
n@617 141 height: 40px;
n@617 142 line-height: 40px;
n@617 143 padding: 0px 10px;
n@617 144 }
n@617 145
n@617 146 div.survey-entry-attribute span{
n@617 147 margin-right: 10px;
n@501 148 }