forked from minikomi/Bootstrap-Form-Builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
113 lines (97 loc) · 1.75 KB
/
custom.css
File metadata and controls
113 lines (97 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
padding-bottom: 10px;
position: relative;
}
@media (max-width: 979px) {
body {
padding-top: 0px;
}
}
#components {
min-height: 500px;
margin-top:5px;
}
#target fieldset {
border: 1px solid #ccc;
min-height: 220px;
padding: 5px;
padding-bottom: 50px;
}
.component {
cursor: pointer;
}
input {
cursor: pointer;
}
textarea {
resize: vertical;
}
.popover {
z-index: 9999;
}
.popover .control-group {
cursor: default;
}
.popover input {
cursor: text;
}
.temp{
width: 100%;
height: 100%;
background: transparent;
position: absolute;
z-index: 999999;
top: 0;
overflow-x: hidden;
left: 0;
}
.temp form {
padding: 8px 4px;
border: 1px dotted #ccc;
position: absolute;
background: white;
box-shadow: 0px 0px 30px #999;
-webkit-transition: -webkit-transform 0.1s ease-out;
overflow: hidden;
}
#render, #jsonrender{
min-height: 500px;
font-family: monospace;
}
/* Popovers now are appended to their parent rather
than to the body/main document as they once were.
We need to over-ride some inherited stuff.. */
form .popover .controls {
margin-left: 0;
}
form .popover .control-label {
text-align: left;
}
form .popover form {
width: 300px;
}
.popover-content form .btn{
/* margin-right: 10px */
}
.target:after{
float:left;
content: " ";
height: 77px;
margin-top: 3px;
background: #f0f0f0;
width: 100%;
border: 1px dashed #ccc;
}
#target, #input, #radioscheckboxes, #select, #buttons {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#target fieldset{
width: 100%;
overflow: hidden;
}