##// END OF EJS Templates
coal: use preformatted text for descriptions (issue2835)...
Matt Mackall -
r14445:61f51f4a default
parent child Browse files
Show More
@@ -1,266 +1,268
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 #.main {
21 21 width: 98%;
22 22 }
23 23
24 24 .overflow {
25 25 width: 100%;
26 26 overflow: auto;
27 27 }
28 28
29 29 .menu {
30 30 background: #999;
31 31 padding: 10px;
32 32 width: 75px;
33 33 margin: 0;
34 34 font-size: 80%;
35 35 text-align: left;
36 36 position: fixed;
37 37 top: 27px;
38 38 left: auto;
39 39 right: 27px;
40 40 }
41 41
42 42 #.menu {
43 43 position: absolute !important;
44 44 top:expression(eval(document.body.scrollTop + 27));
45 45 }
46 46
47 47 .menu ul {
48 48 list-style: none;
49 49 padding: 0;
50 50 margin: 10px 0 0 0;
51 51 }
52 52
53 53 .menu li {
54 54 margin-bottom: 3px;
55 55 padding: 2px 4px;
56 56 background: white;
57 57 color: black;
58 58 font-weight: normal;
59 59 }
60 60
61 61 .menu li.active {
62 62 background: black;
63 63 color: white;
64 64 }
65 65
66 66 .menu img {
67 67 width: 75px;
68 68 height: 90px;
69 69 border: 0;
70 70 }
71 71
72 72 .menu a { color: black; display: block; }
73 73
74 74 .search {
75 75 position: absolute;
76 76 top: .7em;
77 77 right: 2em;
78 78 }
79 79
80 80 form.search div#hint {
81 81 display: none;
82 82 position: absolute;
83 83 top: 40px;
84 84 right: 0px;
85 85 width: 190px;
86 86 padding: 5px;
87 87 background: #ffc;
88 88 font-size: 70%;
89 89 border: 1px solid yellow;
90 90 -moz-border-radius: 5px; /* this works only in camino/firefox */
91 91 -webkit-border-radius: 5px; /* this is just for Safari */
92 92 }
93 93
94 94 form.search:hover div#hint { display: block; }
95 95
96 96 a { text-decoration:none; }
97 97 .age { white-space:nowrap; }
98 98 .date { white-space:nowrap; }
99 99 .indexlinks { white-space:nowrap; }
100 100 .parity0 { background-color: #f0f0f0; }
101 101 .parity1 { background-color: white; }
102 102 .plusline { color: green; }
103 103 .minusline { color: #dc143c; } /* crimson */
104 104 .atline { color: purple; }
105 105
106 106 .navigate {
107 107 text-align: right;
108 108 font-size: 60%;
109 109 margin: 1em 0;
110 110 }
111 111
112 112 .tag {
113 113 color: #999;
114 114 font-size: 70%;
115 115 font-weight: normal;
116 116 margin-left: .5em;
117 117 vertical-align: baseline;
118 118 }
119 119
120 120 .branchhead {
121 121 color: #000;
122 122 font-size: 80%;
123 123 font-weight: normal;
124 124 margin-left: .5em;
125 125 vertical-align: baseline;
126 126 }
127 127
128 128 ul#graphnodes .branchhead {
129 129 font-size: 75%;
130 130 }
131 131
132 132 .branchname {
133 133 color: #000;
134 134 font-size: 60%;
135 135 font-weight: normal;
136 136 margin-left: .5em;
137 137 vertical-align: baseline;
138 138 }
139 139
140 140 h3 .branchname {
141 141 font-size: 80%;
142 142 }
143 143
144 144 /* Common */
145 145 pre { margin: 0; }
146 146
147 147 h2 { font-size: 120%; border-bottom: 1px solid #999; }
148 148 h2 a { color: #000; }
149 149 h3 {
150 150 margin-top: -.7em;
151 151 font-size: 100%;
152 152 }
153 153
154 154 /* log and tags tables */
155 155 .bigtable {
156 156 border-bottom: 1px solid #999;
157 157 border-collapse: collapse;
158 158 font-size: 90%;
159 159 width: 100%;
160 160 font-weight: normal;
161 161 text-align: left;
162 162 }
163 163
164 164 .bigtable td {
165 165 vertical-align: top;
166 166 }
167 167
168 168 .bigtable th {
169 169 padding: 1px 4px;
170 170 border-bottom: 1px solid #999;
171 171 }
172 172 .bigtable tr { border: none; }
173 173 .bigtable .age { width: 6em; }
174 174 .bigtable .author { width: 12em; }
175 175 .bigtable .description { }
176 176 .bigtable .description .base { font-size: 70%; float: right; line-height: 1.66; }
177 177 .bigtable .node { width: 5em; font-family: monospace;}
178 178 .bigtable .lineno { width: 2em; text-align: right;}
179 179 .bigtable .lineno a { color: #999; font-size: smaller; font-family: monospace;}
180 180 .bigtable .permissions { width: 8em; text-align: left;}
181 181 .bigtable .size { width: 5em; text-align: right; }
182 182 .bigtable .annotate { text-align: right; }
183 183 .bigtable td.annotate { font-size: smaller; }
184 184 .bigtable td.source { font-size: inherit; }
185 185
186 186 .source, .sourcefirst, .sourcelast {
187 187 font-family: monospace;
188 188 white-space: pre;
189 189 padding: 1px 4px;
190 190 font-size: 90%;
191 191 }
192 192 .sourcefirst { border-bottom: 1px solid #999; font-weight: bold; }
193 193 .sourcelast { border-top: 1px solid #999; }
194 194 .source a { color: #999; font-size: smaller; font-family: monospace;}
195 195 .bottomline { border-bottom: 1px solid #999; }
196 196
197 197 .fileline { font-family: monospace; }
198 198 .fileline img { border: 0; }
199 199
200 200 .tagEntry .closed { color: #99f; }
201 201
202 202 /* Changeset entry */
203 203 #changesetEntry {
204 204 border-collapse: collapse;
205 205 font-size: 90%;
206 206 width: 100%;
207 207 margin-bottom: 1em;
208 208 }
209 209
210 210 #changesetEntry th {
211 211 padding: 1px 4px;
212 212 width: 4em;
213 213 text-align: right;
214 214 font-weight: normal;
215 215 color: #999;
216 216 margin-right: .5em;
217 217 vertical-align: top;
218 218 }
219 219
220 220 div.description {
221 221 border-left: 3px solid #999;
222 222 margin: 1em 0 1em 0;
223 223 padding: .3em;
224 white-space: pre;
225 font-family: monospace;
224 226 }
225 227
226 228 /* Graph */
227 229 div#wrapper {
228 230 position: relative;
229 231 border-top: 1px solid black;
230 232 border-bottom: 1px solid black;
231 233 margin: 0;
232 234 padding: 0;
233 235 }
234 236
235 237 canvas {
236 238 position: absolute;
237 239 z-index: 5;
238 240 top: -0.7em;
239 241 margin: 0;
240 242 }
241 243
242 244 ul#graphnodes {
243 245 position: absolute;
244 246 z-index: 10;
245 247 top: -1.0em;
246 248 list-style: none inside none;
247 249 padding: 0;
248 250 }
249 251
250 252 ul#nodebgs {
251 253 list-style: none inside none;
252 254 padding: 0;
253 255 margin: 0;
254 256 top: -0.7em;
255 257 }
256 258
257 259 ul#graphnodes li, ul#nodebgs li {
258 260 height: 39px;
259 261 }
260 262
261 263 ul#graphnodes li .info {
262 264 display: block;
263 265 font-size: 70%;
264 266 position: relative;
265 267 top: -3px;
266 268 }
General Comments 0
You need to be logged in to leave comments. Login now