pyc-website
main website for pyc inc.
git clone https://9o.is/git/pyc-website.git
form.less
(948B)
1 /****************************
2 * Angular form
3 ****************************/
4
5 .state-success {
6 .icon-append, .icon-prepend {
7 color: @brand-success !important;
8 }
9
10 textarea, input, select {
11 &, &:hover {
12 border-color: @brand-success !important;
13 color: @brand-success !important;
14 }
15
16 &:focus {
17 border-color: @brand-success !important;
18 color: @gray-darkest !important;
19 background: @white;
20 }
21 }
22 }
23
24 .state-error {
25 .icon-append, .icon-prepend {
26 color: @brand-danger !important;
27 }
28
29 textarea, input, select {
30 &, &:hover {
31 border-color: @brand-danger !important;
32 color: @brand-danger !important;
33 }
34
35 &:focus {
36 border-color: @brand-danger !important;
37 color: @gray-darkest !important;
38 background: @white;
39 }
40 }
41 }
42
43 .simple-form .smart-form {
44 fieldset {
45 padding: 0 !important;
46 }
47
48 footer {
49 background: none !important;
50 }
51 }