-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patheditor.css
96 lines (82 loc) · 1.94 KB
/
editor.css
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
html, body {
background-color: #eee;
}
body {
padding-top: 20px; /* 40px to make the container go all the way to the bottom of the topbar */
}
.container > footer p {
text-align: center; /* center align it with the container */
}
.container {
}
/* The white background content wrapper */
.content {
background-color: #fff;
padding: 20px;
margin: 0 -20px; /* negative indent the amount of the padding to maintain the grid system */
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.4);
box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.4);
}
/* Page header tweaks */
.page-header {
background-color: #3B9A0C;
padding: 20px 20px 10px;
margin: -20px -20px 20px;
-webkit-border-radius: 6px 6px 0px 0px;
-moz-border-radius: 6px 6px 0px 0px;
border-radius: 6px 6px 0px 0px;
}
.page-header h1 {
color: #fff;
text-shadow: 0px 0px 3px #333;
}
/* Styles you shouldn't keep as they are for displaying this base example only */
.content .span10,
.content .span5 {
min-height: 500px;
}
/* Give a quick and non-cross-browser friendly divider */
.content .span5 {
margin-left: 0;
padding-left: 19px;
border-right: 1px solid #eee;
}
.topbar .btn {
border: 0;
}
.btn.xsmall{padding:3px 6px 3px;font-size:10px;}
.form-stacked{
padding-left: 0;
}
.field-wrapper {
display: block;
cursor: pointer;
text-decoration: none;
padding: 10px 10px 15px 10px;
border: 1px solid transparent;
margin: 0px 0px 10px 0px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.field-wrapper * {
cursor: pointer;
}
.field-wrapper:hover {
border: 1px dashed #7CC07F;
}
.field-wrapper.selected {
border: 1px solid #9ABA9E;
background-color: #EFFFF6;
}
span.required {
color: red;
}
.add-field-pane .btn {
width: 125px;
margin: 0px 5px 5px 0px;
}