source: tracformsplugin/trunk/tracforms/htdocs/tracforms.css

Last change on this file was 16384, checked in by Ryan J Ollos, 7 years ago

TracForms 0.5dev: Conform to PEP8

File size: 1016 bytes
Line 
1/* CSS definitions for TracFormsPlugin */
2/* styles for form and form select page */
3
4#content.tracforms {
5 width: 58em;
6 max-width: 100%;
7 margin-left: auto;
8 margin-right: auto;
9}
10
11#content.tracforms #form {
12 background: #eef;
13 border: 1px outset #996;
14 margin-top: 1em;
15 padding: .5em 1em;
16 position: relative;
17}
18
19#form table.properties {
20 border-collapse: collapse;
21 border-top: 1px solid #990;
22 clear: both;
23 table-layout: fixed;
24 width: 100%;
25}
26
27#form table.properties td {
28 width: 40%;
29}
30
31#form table.properties th {
32 width: 20%;
33}
34
35#form table.properties td, #form table.properties th {
36 font-size: 80%;
37 padding: 0.5em 1em;
38 text-align: left;
39 vertical-align: top;
40}
41
42#form table.properties .author, #form table.properties .date {
43 color: #990;
44}
45
46#changelog {
47 border: 1px outset #996;
48 padding: 1em
49}
50
51#changelog h3, #ticketchange h3 {
52 border-bottom: 1px solid #d7d7d7;
53 color: #999;
54 font-size: 100%;
55 font-weight: normal;
56}
57
58#changelog .changes {
59 list-style: square;
60 margin-left: 2em;
61 padding: 0
62}
63
Note: See TracBrowser for help on using the repository browser.