-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.less
174 lines (151 loc) · 3.68 KB
/
forms.less
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
+------------------------------------------------------------------------+
| PhalconEye CMS |
+------------------------------------------------------------------------+
| Copyright (c) 2013-2014 PhalconEye Team (http://phalconeye.com/) |
+------------------------------------------------------------------------+
| This source file is subject to the New BSD License that is bundled |
| with this package in the file LICENSE.txt. |
| |
| If you did not receive a copy of the license and are unable to |
| obtain it through the world-wide-web, please send an email |
| to [email protected] so we can send you a copy immediately. |
+------------------------------------------------------------------------+
| Author: Ivan Vorontsov <[email protected]> |
| Author: Piotr Gasiorowski <[email protected]> |
+------------------------------------------------------------------------+
*/
form {
padding: 0;
margin: 0 auto;
max-width: 95%;
.box-shadow(0px 0px 2px @formDescriptionColor);
fieldset {
clear: both;
border: none;
margin: 1em 1em 0;
padding: 0;
legend {
border-bottom: 1px solid @formDescriptionColor;
margin: 1em auto;
padding: 1em 0;
width: 100%;
}
& > div {
clear: both;
width: 100%;
}
}
.form_header {
border-bottom: 1px solid @formDescriptionColor;
padding: 1em;
& > h3 {
margin: 0;
font-size: 1.2em;
font-weight: 700;
}
& > p {
color: @formDescriptionColor;
font-size: @fontSizeForms;
margin: 0 0 0.75em 0;
}
}
.form_elements {
.form_element, .form_label {
float: left;
width: ~"-webkit-calc(50% - 2em)";
width: ~"calc(50% - 2em)";
padding: 0.5em 1em;
}
.form_label {
& > label {
color: @formLabelColor;
}
& > p {
font-size: @fontSizeForms;
line-height: 1em;
color: @formDescriptionColor;
margin: 0;
}
}
.form_element {
& > * {
width: 100%;
margin-bottom: 0.4em;
}
textarea {
min-height: 100px;
}
.dynamic-controls {
margin-left: 1em;
text-align: right;
button {
margin-left: 0.4em;
}
}
select + .dynamic-controls {
margin: 0;
}
}
.validation_failed {
label {
color: @fontErrorColor;
}
input, textarea, select, {
background-color: @fontErrorColor;
}
}
}
.form_footer {
text-align: right;
padding: 1em;
border-top: 1px solid @formDescriptionColor;
}
.form_element_checkbox,
.form_element_radio {
position: relative;
label {
font-size: 0.8em;
}
}
.form_element_file_image {
text-align: center;
overflow-x: hidden;
width: auto;
img[src*="/"] {
width: inherit;
max-width: 50%;
}
}
.form_errors,
.form_notices {
margin: 0;
padding: 2em 2em 0;
li {
color: @fontErrorColor;
}
}
.form_element_remote_file {
position: relative;
& > input[type="text"] {
width: 65%;
& + input {
position: absolute;
top: 0;
width: 35%;
}
& + input[type="button"] {
background-color: @linkColor;
color: @buttonBgColor;
border: none;
margin: 0;
}
}
}
}
/** Specific forms **/
.form_login {
margin: 50px auto;
max-width: 420px;
width: 90%;
}