##// END OF EJS Templates
coal: remove dead CSS code
Brendan Cully -
r7286:a1f8ad3c default
parent child Browse files
Show More
@@ -1,206 +1,197 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 #.main {
21 width:98%;
22 }
23
24 20 .overflow {
25 21 width: 100%;
26 22 overflow: auto;
27 23 }
28 24
29 25 .menu {
30 26 background: #999;
31 27 padding: 10px;
32 28 width: 75px;
33 29 margin: 0;
34 30 font-size: 80%;
35 31 text-align: left;
36 32 position: fixed;
37 33 top: 27px;
38 34 left: auto;
39 35 right: 27px;
40 36 }
41 37
42 #.menu {
43 position: absolute !important;
44 top:expression(eval(document.body.scrollTop + 27));
45 }
46
47 38 .menu ul {
48 39 list-style: none;
49 40 padding: 0;
50 41 margin: 10px 0 0 0;
51 42 }
52 43
53 44 .menu li {
54 45 margin-bottom: 3px;
55 46 padding: 2px 4px;
56 47 background: white;
57 48 color: black;
58 49 font-weight: normal;
59 50 }
60 51
61 52 .menu li.active {
62 53 background: black;
63 54 color: white;
64 55 }
65 56
66 57 .menu a { color: black; display: block; }
67 58
68 59 .search {
69 60 position: absolute;
70 61 top: .7em;
71 62 right: 2em;
72 63 }
73 64
74 65 a { text-decoration:none; }
75 66 .age { white-space:nowrap; }
76 67 .date { white-space:nowrap; }
77 68 .indexlinks { white-space:nowrap; }
78 69 .parity0 { background-color: #f5f5f5; }
79 70 .parity1 { background-color: white; }
80 71 .plusline { color: green; }
81 72 .minusline { color: red; }
82 73 .atline { color: purple; }
83 74
84 75 .navigate {
85 76 text-align: right;
86 77 font-size: 60%;
87 78 margin: 1em 0 1em 0;
88 79 }
89 80
90 81 .tag {
91 82 color: #999;
92 83 font-size: 70%;
93 84 font-weight: normal;
94 85 margin-left: .5em;
95 86 vertical-align: baseline;
96 87 }
97 88
98 89 /* Common */
99 90 pre { margin: 0; }
100 91
101 92 h2 { font-size: 120%; border-bottom: 1px solid #999; }
102 93 h3 {
103 94 margin-top: -.7em;
104 95 font-size: 100%;
105 96 }
106 97
107 98 /* log and tags tables */
108 99 .bigtable {
109 100 border-bottom: 1px solid #999;
110 101 border-collapse: collapse;
111 102 font-size: 90%;
112 103 width: 100%;
113 104 font-weight: normal;
114 105 text-align: left;
115 106 }
116 107
117 108 .bigtable td {
118 109 padding: 1px 4px 1px 4px;
119 110 vertical-align: top;
120 111 }
121 112
122 113 .bigtable th {
123 114 padding: 1px 4px 1px 4px;
124 115 border-bottom: 1px solid #999;
125 116 font-size: smaller;
126 117 }
127 118 .bigtable tr { border: none; }
128 119 .bigtable .age { width: 6em; }
129 120 .bigtable .author { width: 12em; }
130 121 .bigtable .description { }
131 122 .bigtable .node { width: 5em; font-family: monospace;}
132 123 .bigtable .lineno { width: 2em; text-align: right;}
133 124 .bigtable .lineno a { color: #999; font-size: smaller; font-family: monospace;}
134 125 .bigtable td.source { font-family: monospace; white-space: pre; }
135 126 .bigtable .permissions { width: 8em; text-align: left;}
136 127 .bigtable .size { width: 5em; text-align: right; }
137 128 .bigtable .annotate { text-align: right; }
138 129 .bigtable td.annotate { font-size: smaller; }
139 130
140 131 .fileline { font-family: monospace; }
141 132 .fileline img { border: 0; }
142 133
143 134 /* Changeset entry */
144 135 #changesetEntry {
145 136 border-collapse: collapse;
146 137 font-size: 90%;
147 138 width: 100%;
148 139 margin-bottom: 1em;
149 140 }
150 141
151 142 #changesetEntry th {
152 143 padding: 1px 4px 1px 4px;
153 144 width: 4em;
154 145 text-align: right;
155 146 font-weight: normal;
156 147 color: #999;
157 148 margin-right: .5em;
158 149 vertical-align: top;
159 150 }
160 151
161 152 div.description {
162 153 border-left: 3px solid #999;
163 154 margin: 1em 0 1em 0;
164 155 padding: .3em;
165 156 }
166 157
167 158 div#wrapper {
168 159 position: relative;
169 160 border-top: 1px solid black;
170 161 border-bottom: 1px solid black;
171 162 margin: 0;
172 163 padding: 0;
173 164 }
174 165
175 166 canvas {
176 167 position: absolute;
177 168 z-index: 5;
178 169 top: -0.7em;
179 170 margin: 0;
180 171 }
181 172
182 173 ul#graphnodes {
183 174 position: absolute;
184 175 z-index: 10;
185 176 top: -1.0em;
186 177 list-style: none inside none;
187 178 padding: 0;
188 179 }
189 180
190 181 ul#nodebgs {
191 182 list-style: none inside none;
192 183 padding: 0;
193 184 margin: 0;
194 185 top: -0.7em;
195 186 }
196 187
197 188 ul#graphnodes li, ul#nodebgs li {
198 189 height: 39px;
199 190 }
200 191
201 192 ul#graphnodes li .info {
202 193 display: block;
203 194 font-size: 70%;
204 195 position: relative;
205 196 top: -3px;
206 197 }
General Comments 0
You need to be logged in to leave comments. Login now