~mcfletch/django-jqm/trunk

« back to all changes in this revision

Viewing changes to jqm/static/css/jqm-django.css

  • Committer: Mike C. Fletcher
  • Date: 2011-06-24 18:43:21 UTC
  • Revision ID: mcfletch@vrplumber.com-20110624184321-ctg831lw970oqqqc
Fix login versus log in, add a simple logout template, tweak display of errors and messages

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.clear-both {
 
2
    clear: both;
 
3
}
 
4
 
1
5
.jqm-message-bar {
2
6
    margin-top: -15px;
3
7
    margin-left: -15px;
4
8
    margin-right: -15px;
5
9
}
6
 
.clear-both {
7
 
    clear: both;
 
10
.jqm-messages {
 
11
    list-style-type: none;
 
12
}
 
13
.jqm-messages .info, .jqm-messages .success {
 
14
    color: black;
 
15
    font-weight: normal;
 
16
}
 
17
.jqm-messages .warn {
 
18
    color: blue;
 
19
}
 
20
.jqm-messages .error {
 
21
    color: red;
 
22
}
 
23
 
 
24
.required label {
 
25
    font-weight: bold;
 
26
}
 
27
.help-trigger {
 
28
    vertical-align: baseline;
 
29
}
 
30
.field-wrapper {
 
31
    padding-top: .25em;
 
32
    padding-bottom: .25em;
 
33
}
 
34
.errorlist {
 
35
    list-style-type: none;
 
36
    color: #700000;
 
37
    margin-top: 0;
8
38
}