##// END OF EJS Templates
coal: fix CSS errors as reported by Firefox
Dirkjan Ochtman -
r6571:e6f71ca3 default
parent child Browse files
Show More
@@ -1,156 +1,156 b''
1 1 body {
2 2 margin: 0;
3 3 padding: 0;
4 4 background: black url(background.png) repeat-x;
5 5 font-family: sans-serif;
6 6 }
7 7
8 8 .container {
9 9 padding-right: 150px;
10 10 }
11 11
12 12 .main {
13 13 position: relative;
14 14 background: white;
15 15 padding: 2em;
16 16 border-right: 15px solid black;
17 17 border-bottom: 15px solid black;
18 18 }
19 19
20 20 .overflow {
21 21 width: 100%;
22 22 overflow: auto;
23 23 }
24 24
25 25 .menu {
26 26 background: #999;
27 27 padding: 10px;
28 28 width: 75px;
29 29 margin: 0;
30 30 font-size: 80%;
31 31 text-align: left;
32 32 position: fixed;
33 33 top: 27px;
34 34 left: auto;
35 35 right: 27px;
36 36 }
37 37
38 38 .menu ul {
39 39 list-style: none;
40 40 padding: 0;
41 41 margin: 10px 0 0 0;
42 42 }
43 43
44 44 .menu li {
45 45 margin-bottom: 3px;
46 46 padding: 2px 4px;
47 47 background: white;
48 48 color: black;
49 49 font-weight: normal;
50 50 }
51 51
52 52 .menu li.active {
53 53 background: black;
54 54 color: white;
55 55 }
56 56
57 57 .menu a { color: black; display: block; }
58 58
59 59 .search {
60 60 position: absolute;
61 61 top: .7em;
62 62 right: 2em;
63 63 }
64 64
65 65 a { text-decoration:none; }
66 66 .age { white-space:nowrap; }
67 67 .date { white-space:nowrap; }
68 68 .indexlinks { white-space:nowrap; }
69 69 .parity0 { background-color: #f5f5f5; }
70 70 .parity1 { background-color: white; }
71 71 .plusline { color: green; }
72 72 .minusline { color: red; }
73 73 .atline { color: purple; }
74 74
75 75 .navigate {
76 76 text-align: right;
77 77 font-size: 60%;
78 78 margin: 1em 0 1em 0;
79 79 }
80 80
81 81 .tag {
82 82 color: #999;
83 83 font-size: 70%;
84 84 font-weight: normal;
85 85 margin-left: .5em;
86 vertical-align: text-baseline;
86 vertical-align: baseline;
87 87 }
88 88
89 89 /* Common */
90 90 pre { margin: 0; }
91 91
92 92 h2 { font-size: 120%; border-bottom: 1px solid #999; }
93 93 h3 {
94 94 margin-top: -.7em;
95 95 font-size: 100%;
96 96 }
97 97
98 98 /* log and tags tables */
99 99 .bigtable {
100 100 border-bottom: 1px solid #999;
101 101 border-collapse: collapse;
102 102 font-size: 90%;
103 103 width: 100%;
104 104 font-weight: normal;
105 105 text-align: left;
106 106 }
107 107
108 108 .bigtable td {
109 109 padding: 1px 4px 1px 4px;
110 110 vertical-align: top;
111 111 }
112 112
113 113 .bigtable th {
114 114 padding: 1px 4px 1px 4px;
115 115 border-bottom: 1px solid #999;
116 116 font-size: smaller;
117 117 }
118 118 .bigtable tr { border: none; }
119 119 .bigtable .age { width: 6em; }
120 120 .bigtable .author { width: 10em; }
121 121 .bigtable .description { }
122 122 .bigtable .node { width: 5em; font-family: monospace;}
123 123 .bigtable .lineno { width: 2em; text-align: right;}
124 124 .bigtable .lineno a { color: #999; font-size: smaller; font-family: monospace;}
125 125 .bigtable td.source { font-family: monospace; white-space: pre; }
126 126 .bigtable .permissions { width: 8em; text-align: left;}
127 127 .bigtable .size { width: 5em; text-align: right; }
128 .bigtable .annotate { text-align: right; padding-right: }
128 .bigtable .annotate { text-align: right; }
129 129 .bigtable td.annotate { font-size: smaller; }
130 130
131 131 .fileline { font-family: monospace; }
132 132 .fileline img { border: 0; }
133 133
134 134 /* Changeset entry */
135 135 #changesetEntry {
136 136 border-collapse: collapse;
137 137 font-size: 90%;
138 138 width: 100%;
139 139 margin-bottom: 1em;
140 140 }
141 141
142 142 #changesetEntry th {
143 143 padding: 1px 4px 1px 4px;
144 144 width: 4em;
145 145 text-align: right;
146 146 font-weight: normal;
147 147 color: #999;
148 148 margin-right: .5em;
149 149 vertical-align: top;
150 150 }
151 151
152 152 div.description {
153 153 border-left: 3px solid #999;
154 154 margin: 1em 0 1em 0;
155 155 padding: .3em;
156 156 }
General Comments 0
You need to be logged in to leave comments. Login now