Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/site/app/webroot/css/forms.css
blob: 0c091e46efca52762b0a8c6cb8f5a54a1f546127 (plain)
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
.amo-form > div {
    margin: 1em 0;
}

.amo-submit {
}

.amo-submit:hover {
}

.amo-cancel {
}

.amo-label-large, .amo-label-medium, .amo-label-small {
    border-bottom: 1px dashed #eee;
    float: left;
	clear:left;
}

.amo-label-large {
    width: 14em;
}

.amo-label-medium {
    width: 10em;
}

.amo-label-small {
    width: 8em;
}

.amo-label-xsmall {
    width: 6em;
}

.amo-form-error {
    background-color: #eee;
    border: 1px dashed #c66;
    color: #c00;
    margin: 5px 0;
    padding: .5em;
}

.amo-form div.error_message {
    color: #c00;
    display: block;
    margin: 0;
    padding-bottom: 1em;
}

 
.amo-form div.amo-form-indent {
    margin-left: 14em;
}

.html-rtl .amo-form div.amo-form-indent {
    margin-left: auto;
    margin-right: 14em;
}

.amo-remember {
    margin-left: 12.2em;
}

.html-rtl .amo-remember {
    margin-left: auto;
    margin-right: 12.2em;
}

.html-rtl .amo-label-large, .html-rtl .amo-label-medium, .html-rtl .amo-label-small {
    float: right;
}