##// END OF EJS Templates
old style: fix the contextbar location
Mads Kiilerich -
r4141:fe4e9a7d rhodecode-2.2.5-gpl
parent child Browse files
Show More
@@ -1,348 +1,352 b''
1 1 /**
2 2 * Stylesheets for the context bar
3 3 */
4 4
5 5 #quick .repo_switcher { background-image: url("../images/icons/database.png"); }
6 6 #quick .journal { background-image: url("../images/icons/book.png"); }
7 7 #quick .gists { background-image: url("../images/icons/note.png"); }
8 8 #quick .gists-private { background-image: url("../images/icons/note_error.png"); }
9 9 #quick .gists-new { background-image: url("../images/icons/note_add.png"); }
10 10 #quick .search { background-image: url("../images/icons/search_16.png"); }
11 11 #quick .admin { background-image: url("../images/icons/cog_edit.png"); }
12 12
13 13 #context-bar a.follow { background-image: url("../images/icons/heart.png"); }
14 14 #context-bar a.following { background-image: url("../images/icons/heart_delete.png"); }
15 15 #context-bar a.fork { background-image: url("../images/icons/arrow_divide.png"); }
16 16 #context-bar a.summary { background-image: url("../images/icons/clipboard_16.png"); }
17 17 #context-bar a.changelogs { background-image: url("../images/icons/time.png"); }
18 18 #context-bar a.files { background-image: url("../images/icons/file.png"); }
19 19 #context-bar a.switch-to { background-image: url("../images/icons/arrow_switch.png"); }
20 20 #context-bar a.options { background-image: url("../images/icons/table_gear.png"); }
21 21 #context-bar a.forks { background-image: url("../images/icons/arrow_divide.png"); }
22 22 #context-bar a.pull-request { background-image: url("../images/icons/arrow_join.png"); }
23 23 #context-bar a.branches { background-image: url("../images/icons/arrow_branch.png"); }
24 24 #context-bar a.tags { background-image: url("../images/icons/tag_blue.png"); }
25 25 #context-bar a.bookmarks { background-image: url("../images/icons/tag_green.png"); }
26 26 #context-bar a.settings { background-image: url("../images/icons/cog.png"); }
27 27 #context-bar a.search { background-image: url("../images/icons/search_16.png"); }
28 28 #context-bar a.admin { background-image: url("../images/icons/cog_edit.png"); }
29 29
30 30 #context-bar a.journal { background-image: url("../images/icons/book.png"); }
31 31 #context-bar a.gists { background-image: url("../images/icons/note.png"); }
32 32 #context-bar a.gists-private { background-image: url("../images/icons/note_error.png"); }
33 33 #context-bar a.gists-new { background-image: url("../images/icons/note_add.png"); }
34 34 #context-bar a.repos { background-image: url("../images/icons/database_edit.png"); }
35 35 #context-bar a.repos_groups { background-image: url("../images/icons/database_link.png"); }
36 36 #context-bar a.users { background-image: url("../images/icons/user_edit.png"); }
37 37 #context-bar a.groups { background-image: url("../images/icons/group_edit.png"); }
38 38 #context-bar a.permissions { background-image: url("../images/icons/key.png"); }
39 39 #context-bar a.ldap { background-image: url("../images/icons/server_key.png"); }
40 40 #context-bar a.defaults { background-image: url("../images/icons/wrench.png"); }
41 41 #context-bar a.settings { background-image: url("../images/icons/cog_edit.png"); }
42 42 #context-bar a.compare_request { background-image: url('../images/icons/arrow_inout.png')}
43 43 #context-bar a.locking_del { background-image: url('../images/icons/lock_delete.png')}
44 44 #context-bar a.locking_add { background-image: url('../images/icons/lock_add.png')}
45 45
46 46 #content #context-bar {
47 47 position: relative;
48 48 overflow: visible;
49 49 background-color: #336699;
50 50 border-top: 1px solid #517da8;
51 51 border-bottom: 1px solid #003162;
52 52 padding: 0 5px;
53 53 min-height: 36px;
54 54 }
55 55
56 #content #context-bar h2 {
57 display: inline-block;
58 }
59
56 60 #header #header-inner #quick a,
57 61 #content #context-bar,
58 62 #content #context-bar a {
59 63 color: #FFFFFF;
60 64 }
61 65
62 66 #header #header-inner #quick a:hover,
63 67 #content #context-bar a:hover {
64 68 text-decoration: none;
65 69 }
66 70
67 71 #content #context-bar .icon {
68 72 display: inline-block;
69 73 width: 16px;
70 74 height: 16px;
71 75 vertical-align: text-bottom;
72 76 }
73 77
74 78 ul.horizontal-list {
75 79 display: block;
76 80 }
77 81
78 82 ul.horizontal-list > li {
79 83 float: left;
80 84 position: relative;
81 85 }
82 86
83 87 #header #header-inner #quick ul,
84 88 ul.horizontal-list > li ul {
85 89 position: absolute;
86 90 display: none;
87 91 right: 0;
88 92 z-index: 999;
89 93 }
90 94
91 95 #header #header-inner #quick li:hover > ul,
92 96 ul.horizontal-list li:hover > ul {
93 97 display: block;
94 98 }
95 99
96 100 #header #header-inner #quick li ul li,
97 101 ul.horizontal-list ul li {
98 102 position: relative;
99 103 border-bottom: 1px solid rgba(0,0,0,0.1);
100 104 border-top: 1px solid rgba(255,255,255,0.1);
101 105 }
102 106
103 107 ul.horizontal-list > li ul ul {
104 108 position: absolute;
105 109 right: 100%;
106 110 top: -1px;
107 111 min-width: 200px;
108 112 max-height: 400px;
109 113 overflow-x: hidden;
110 114 overflow-y: auto;
111 115 }
112 116
113 117 #header #header-inner #quick ul a,
114 118 ul.horizontal-list li a {
115 119 white-space: nowrap;
116 120 }
117 121
118 122 #breadcrumbs {
119 123 float: left;
120 124 padding: 6px 0 5px 0;
121 125 padding-left: 5px;
122 126 font-weight: bold;
123 127 font-size: 14px;
124 128 }
125 129
126 130 #breadcrumbs span {
127 131 font-weight: bold;
128 132 font-size: 1.4em;
129 133 }
130 134
131 135 #header #header-inner #quick ul,
132 136 #revision-changer,
133 137 #context-pages,
134 138 #context-pages ul {
135 139 background: #3b6998; /* Old browsers */
136 140 background: -moz-linear-gradient(top, #4574a2 0%, #2f5d8b 100%); /* FF3.6+ */
137 141 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4574a2), color-stop(100%,#2f5d8b)); /* Chrome,Safari4+ */
138 142 background: -webkit-linear-gradient(top, #4574a2 0%, #2f5d8b 100%); /* Chrome10+,Safari5.1+ */
139 143 background: -o-linear-gradient(top, #4574a2 0%, #2f5d8b 100%); /* Opera 11.10+ */
140 144 background: -ms-linear-gradient(top, #4574a2 0%, #2f5d8b 100%); /* IE10+ */
141 145 background: linear-gradient(to bottom, #4574a2 0%, #2f5d8b 100%); /* W3C */
142 146 /*Filter on IE will also use overflow:hidden implicitly, and that would clip our inner menus.*/
143 147 /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4574a2', endColorstr='#2f5d8b',GradientType=0 ); /* IE6-9 */*/
144 148 }
145 149
146 150 #header #header-inner #quick a,
147 151 #context-actions a,
148 152 #context-pages a {
149 153 background-repeat: no-repeat;
150 154 background-position: 10px 50%;
151 155 padding-left: 30px;
152 156 }
153 157
154 158 #quick a,
155 159 #context-pages ul ul a {
156 160 padding-left: 10px;
157 161 }
158 162
159 163 ul#context-actions {
160 164 display: inline-block;
161 165 float: right;
162 166 border-radius: 4px;
163 167 background-image: linear-gradient(top, #4574a2 0%, #2f5d8b 100%);
164 168 }
165 169
166 170 #content ul#context-actions li {
167 171 padding: 0px;
168 172 border-right: 1px solid rgba(0,0,0,0.1);
169 173 border-left: 1px solid rgba(255,255,255,0.1);
170 174 }
171 175
172 176 #context-actions a {
173 177 display: block;
174 178 cursor: pointer;
175 179 background: none;
176 180 border: none;
177 181 margin: 0px;
178 182 height: auto;
179 183 padding: 10px 10px 10px 30px;
180 184 background-repeat: no-repeat;
181 185 background-position: 10px 50%;
182 186 font-size: 1em;
183 187 }
184 188
185 189 #context-actions a {
186 190 padding: 11px 10px 12px 30px;
187 191 }
188 192
189 193 #header #header-inner #quick li:hover,
190 194 #revision-changer:hover,
191 195 #context-pages li:hover,
192 196 #context-actions li:hover,
193 197 #content #context-actions li:hover,
194 198 #header #header-inner #quick li.current,
195 199 #context-pages li.current {
196 200 background: #6388ad; /* Old browsers */
197 201 background: -moz-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* FF3.6+ */
198 202 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
199 203 background: -webkit-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* Chrome10+,Safari5.1+ */
200 204 background: -o-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* Opera 11.10+ */
201 205 background: -ms-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* IE10+ */
202 206 background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* W3C */
203 207 /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#88bfe8', endColorstr='#70b0e0',GradientType=0 ); /* IE6-9 */*/
204 208 }
205 209
206 210
207 211 #content #context-actions li:first-child {
208 212 border-left: none;
209 213 border-radius: 4px 0 0px 4px;
210 214 }
211 215
212 216 #content #context-actions li:last-child {
213 217 border-right: none;
214 218 border-radius: 0 4px 4px 0;
215 219 }
216 220
217 221 #content #context-actions .icon {
218 222 margin: auto;
219 223 margin-bottom: 5px;
220 224 display: block;
221 225 clear: both;
222 226 float: none;
223 227 }
224 228
225 229 #content #context-pages .follow .show-following,
226 230 #content #context-pages .following .show-follow {
227 231 display: none;
228 232 }
229 233
230 234 #context-pages {
231 235 float: right;
232 236 border-left: 1px solid rgba(0,0,0,0.1);
233 237 }
234 238
235 239 #context-pages li.current {
236 240 background: #535353; /* Old browsers */
237 241 background: -moz-linear-gradient(top, #5d5d5d 0%, #484848 100%); /* FF3.6+ */
238 242 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5d5d5d), color-stop(100%,#484848)); /* Chrome,Safari4+ */
239 243 background: -webkit-linear-gradient(top, #5d5d5d 0%, #484848 100%); /* Chrome10+,Safari5.1+ */
240 244 background: -o-linear-gradient(top, #5d5d5d 0%, #484848 100%); /* Opera 11.10+ */
241 245 background: -ms-linear-gradient(top, #5d5d5d 0%, #484848 100%); /* IE10+ */
242 246 background: linear-gradient(to bottom, #5d5d5d 0%, #484848 100%); /* W3C */
243 247 }
244 248
245 249 #content #context-pages .icon {
246 250 margin-right: 5px;
247 251 }
248 252
249 253 #header #header-inner #quick li,
250 254 #content #context-pages li {
251 255 border-right: 1px solid rgba(0,0,0,0.1);
252 256 border-left: 1px solid rgba(255,255,255,0.1);
253 257 padding: 0;
254 258 }
255 259
256 260 #header #header-inner #quick li:last-child,
257 261 #content #context-pages li:last-child {
258 262 border-right: none;
259 263 }
260 264
261 265 #header #header-inner #quick > li:first-child {
262 266 border-left: none;
263 267 }
264 268
265 269 #header #header-inner #quick > li:first-child > a {
266 270 border-radius: 4px 0 0 4px;
267 271 }
268 272
269 273 #header #header-inner #quick a,
270 274 #context-pages a,
271 275 #context-pages .admin_menu a {
272 276 display: block;
273 277 padding: 0px 10px 1px 30px;
274 278 padding-left: 30px;
275 279 line-height: 35px;
276 280 }
277 281
278 282 #header #header-inner #quick a.thin,
279 283 #context-pages a.thin,
280 284 #context-pages .admin_menu a.thin {
281 285 line-height: 28px !important;
282 286 }
283 287
284 288 #header #header-inner #quick a#quick_login_link {
285 289 padding-left: 0px;
286 290 }
287 291
288 292 #header #header-inner #quick a {
289 293 overflow: hidden;
290 294 }
291 295 #quick a.childs:after,
292 296 #revision-changer:before,
293 297 #context-pages a.childs:after,
294 298 #context-pages a.dropdown:after {
295 299 content: ' \25BE';
296 300 }
297 301 #context-pages a.childs {
298 302 padding-right: 30px;
299 303 }
300 304 #context-pages a.childs:after {
301 305 position: absolute;
302 306 float: right;
303 307 padding-left: 5px;
304 308 padding-right: 5px;
305 309 }
306 310
307 311 #revision-changer:before {
308 312 position: absolute;
309 313 top: 0px;
310 314 right: 0px;
311 315 border-right: 1px solid rgba(0,0,0,0.1);
312 316 height: 25px;
313 317 padding-top: 10px;
314 318 padding-right: 10px;
315 319 }
316 320
317 321 #context-pages li:last-child a {
318 322 padding-right: 10px;
319 323 }
320 324
321 325 #context-bar #revision-changer {
322 326 position: relative;
323 327 cursor: pointer;
324 328 border: none;
325 329 padding: 0;
326 330 margin: 0;
327 331 color: #FFFFFF;
328 332 font-size: 0.85em;
329 333 padding: 2px 15px;
330 334 padding-bottom: 3px;
331 335 padding-right: 30px;
332 336 border-right: 1px solid rgba(255,255,255,0.1);
333 337 }
334 338
335 339 #revision-changer .branch-name,
336 340 #revision-changer .revision {
337 341 display: block;
338 342 text-align: center;
339 343 line-height: 1.5em;
340 344 }
341 345
342 346 #revision-changer .branch-name {
343 347 font-weight: bold;
344 348 }
345 349
346 350 #revision-changer .revision {
347 351 text-transform: uppercase;
348 352 }
@@ -1,4981 +1,4979 b''
1 1 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
2 2 border: 0;
3 3 outline: 0;
4 4 font-size: 100%;
5 5 vertical-align: baseline;
6 6 background: transparent;
7 7 margin: 0;
8 8 padding: 0;
9 9 }
10 10
11 11 body {
12 12 line-height: 1;
13 13 height: 100%;
14 14 background: url("../images/background.png") repeat scroll 0 0 #B0B0B0;
15 15 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
16 16 Lucida Sans Unicode, Arial, sans-serif; font-size : 12px;
17 17 color: #000;
18 18 margin: 0;
19 19 padding: 0;
20 20 font-size: 12px;
21 21 }
22 22
23 23 ol, ul {
24 24 list-style: none;
25 25 }
26 26
27 27 blockquote, q {
28 28 quotes: none;
29 29 }
30 30
31 31 blockquote:before, blockquote:after, q:before, q:after {
32 32 content: none;
33 33 }
34 34
35 35 :focus {
36 36 outline: 0;
37 37 }
38 38
39 39 del {
40 40 text-decoration: line-through;
41 41 }
42 42
43 43 table {
44 44 border-collapse: collapse;
45 45 border-spacing: 0;
46 46 }
47 47
48 48 html {
49 49 height: 100%;
50 50 }
51 51
52 52 a {
53 53 color: #003367;
54 54 text-decoration: none;
55 55 cursor: pointer;
56 56 }
57 57
58 58 a:hover {
59 59 color: #316293;
60 60 text-decoration: underline;
61 61 }
62 62
63 63 h1, h2, h3, h4, h5, h6,
64 64 div.h1, div.h2, div.h3, div.h4, div.h5, div.h6 {
65 65 color: #292929;
66 66 font-weight: 700;
67 67 }
68 68
69 69 h1, div.h1 {
70 70 font-size: 22px;
71 71 }
72 72
73 73 h2, div.h2 {
74 74 font-size: 20px;
75 75 }
76 76
77 77 h3, div.h3 {
78 78 font-size: 18px;
79 79 }
80 80
81 81 h4, div.h4 {
82 82 font-size: 16px;
83 83 }
84 84
85 85 h5, div.h5 {
86 86 font-size: 14px;
87 87 }
88 88
89 89 h6, div.h6 {
90 90 font-size: 11px;
91 91 }
92 92
93 93 ul.circle {
94 94 list-style-type: circle;
95 95 }
96 96
97 97 ul.disc {
98 98 list-style-type: disc;
99 99 }
100 100
101 101 ul.square {
102 102 list-style-type: square;
103 103 }
104 104
105 105 ol.lower-roman {
106 106 list-style-type: lower-roman;
107 107 }
108 108
109 109 ol.upper-roman {
110 110 list-style-type: upper-roman;
111 111 }
112 112
113 113 ol.lower-alpha {
114 114 list-style-type: lower-alpha;
115 115 }
116 116
117 117 ol.upper-alpha {
118 118 list-style-type: upper-alpha;
119 119 }
120 120
121 121 ol.decimal {
122 122 list-style-type: decimal;
123 123 }
124 124
125 125 div.color {
126 126 clear: both;
127 127 overflow: hidden;
128 128 position: absolute;
129 129 background: #FFF;
130 130 margin: 7px 0 0 60px;
131 131 padding: 1px 1px 1px 0;
132 132 }
133 133
134 134 div.color a {
135 135 width: 15px;
136 136 height: 15px;
137 137 display: block;
138 138 float: left;
139 139 margin: 0 0 0 1px;
140 140 padding: 0;
141 141 }
142 142
143 143 div.options {
144 144 clear: both;
145 145 overflow: hidden;
146 146 position: absolute;
147 147 background: #FFF;
148 148 margin: 7px 0 0 162px;
149 149 padding: 0;
150 150 }
151 151
152 152 div.options a {
153 153 height: 1%;
154 154 display: block;
155 155 text-decoration: none;
156 156 margin: 0;
157 157 padding: 3px 8px;
158 158 }
159 159
160 160 .top-left-rounded-corner {
161 161 -webkit-border-top-left-radius: 8px;
162 162 -khtml-border-radius-topleft: 8px;
163 163 border-top-left-radius: 8px;
164 164 }
165 165
166 166 .top-right-rounded-corner {
167 167 -webkit-border-top-right-radius: 8px;
168 168 -khtml-border-radius-topright: 8px;
169 169 border-top-right-radius: 8px;
170 170 }
171 171
172 172 .bottom-left-rounded-corner {
173 173 -webkit-border-bottom-left-radius: 8px;
174 174 -khtml-border-radius-bottomleft: 8px;
175 175 border-bottom-left-radius: 8px;
176 176 }
177 177
178 178 .bottom-right-rounded-corner {
179 179 -webkit-border-bottom-right-radius: 8px;
180 180 -khtml-border-radius-bottomright: 8px;
181 181 border-bottom-right-radius: 8px;
182 182 }
183 183
184 184 .top-left-rounded-corner-mid {
185 185 -webkit-border-top-left-radius: 4px;
186 186 -khtml-border-radius-topleft: 4px;
187 187 border-top-left-radius: 4px;
188 188 }
189 189
190 190 .top-right-rounded-corner-mid {
191 191 -webkit-border-top-right-radius: 4px;
192 192 -khtml-border-radius-topright: 4px;
193 193 border-top-right-radius: 4px;
194 194 }
195 195
196 196 .bottom-left-rounded-corner-mid {
197 197 -webkit-border-bottom-left-radius: 4px;
198 198 -khtml-border-radius-bottomleft: 4px;
199 199 border-bottom-left-radius: 4px;
200 200 }
201 201
202 202 .bottom-right-rounded-corner-mid {
203 203 -webkit-border-bottom-right-radius: 4px;
204 204 -khtml-border-radius-bottomright: 4px;
205 205 border-bottom-right-radius: 4px;
206 206 }
207 207
208 208 .help-block {
209 209 color: #999999;
210 210 display: block;
211 211 margin-bottom: 0;
212 212 margin-top: 5px;
213 213 }
214 214
215 215 .empty_data {
216 216 color: #B9B9B9;
217 217 }
218 218
219 219 .truncate {
220 220 white-space: nowrap;
221 221 overflow: hidden;
222 222 text-overflow: ellipsis;
223 223 -o-text-overflow: ellipsis;
224 224 -ms-text-overflow: ellipsis;
225 225 }
226 226
227 227 .truncate.autoexpand:hover {
228 228 text-overflow: none;
229 229 overflow: visible;
230 230 }
231 231
232 232 a.permalink {
233 233 visibility: hidden;
234 234 position: absolute;
235 235 margin: 3px 4px;
236 236 }
237 237
238 238 a.permalink:hover {
239 239 text-decoration: none;
240 240 }
241 241
242 242 h1:hover > a.permalink,
243 243 h2:hover > a.permalink,
244 244 h3:hover > a.permalink,
245 245 h4:hover > a.permalink,
246 246 h5:hover > a.permalink,
247 247 h6:hover > a.permalink,
248 248 div:hover > a.permalink {
249 249 visibility: visible;
250 250 }
251 251
252 252 #header #logo {
253 253 padding-left: 20px;
254 254 }
255 255
256 256 #header #logo div.header,
257 257 #header #logo div.branding {
258 258 font-size: 20px;
259 259 color: white;
260 260 float: left;
261 261 height: 44px;
262 262 line-height: 44px;
263 263 margin-right: 10px;
264 264 }
265 265
266 266 #header ul#logged-user {
267 267 margin-bottom: 5px !important;
268 268 -webkit-border-radius: 0px 0px 8px 8px;
269 269 -khtml-border-radius: 0px 0px 8px 8px;
270 270 border-radius: 0px 0px 8px 8px;
271 271 height: 37px;
272 272 background-color: #003B76;
273 273 background-repeat: repeat-x;
274 274 background-image: -khtml-gradient(linear, left top, left bottom, from(#003B76), to(#00376E) );
275 275 background-image: -moz-linear-gradient(top, #003b76, #00376e);
276 276 background-image: -ms-linear-gradient(top, #003b76, #00376e);
277 277 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76), color-stop(100%, #00376e) );
278 278 background-image: -webkit-linear-gradient(top, #003b76, #00376e);
279 279 background-image: -o-linear-gradient(top, #003b76, #00376e);
280 280 background-image: linear-gradient(to bottom, #003b76, #00376e);
281 281 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',endColorstr='#00376e', GradientType=0 );
282 282 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
283 283 }
284 284
285 285 #header ul#logged-user li {
286 286 list-style: none;
287 287 float: left;
288 288 margin: 8px 0 0;
289 289 padding: 4px 12px;
290 290 border-left: 1px solid #316293;
291 291 }
292 292
293 293 #header ul#logged-user li.first {
294 294 border-left: none;
295 295 margin: 4px;
296 296 }
297 297
298 298 #header ul#logged-user li.first div.gravatar {
299 299 margin-top: -2px;
300 300 }
301 301
302 302 #header ul#logged-user li.first div.account {
303 303 padding-top: 4px;
304 304 float: left;
305 305 }
306 306
307 307 #header ul#logged-user li.last {
308 308 border-right: none;
309 309 }
310 310
311 311 #header ul#logged-user li a {
312 312 color: #fff;
313 313 font-weight: 700;
314 314 text-decoration: none;
315 315 }
316 316
317 317 #header ul#logged-user li a:hover {
318 318 text-decoration: underline;
319 319 }
320 320
321 321 #header ul#logged-user li.highlight a {
322 322 color: #fff;
323 323 }
324 324
325 325 #header ul#logged-user li.highlight a:hover {
326 326 color: #FFF;
327 327 }
328 328 #header-dd {
329 329 clear: both;
330 330 position: fixed !important;
331 331 background-color: #003B76;
332 332 opacity: 0.01;
333 333 cursor: pointer;
334 334 min-height: 10px;
335 335 width: 100% !important;
336 336 -webkit-border-radius: 0px 0px 4px 4px;
337 337 -khtml-border-radius: 0px 0px 4px 4px;
338 338 border-radius: 0px 0px 4px 4px;
339 339 }
340 340
341 341 #header-dd:hover {
342 342 opacity: 0.2;
343 343 -webkit-transition: opacity 0.5s ease-in-out;
344 344 -moz-transition: opacity 0.5s ease-in-out;
345 345 transition: opacity 0.5s ease-in-out;
346 346 }
347 347
348 348 #header #header-inner {
349 349 min-height: 44px;
350 350 clear: both;
351 351 position: relative;
352 352 background-color: #003B76;
353 353 background-repeat: repeat-x;
354 354 background-image: -khtml-gradient(linear, left top, left bottom, from(#003B76), to(#00376E) );
355 355 background-image: -moz-linear-gradient(top, #003b76, #00376e);
356 356 background-image: -ms-linear-gradient(top, #003b76, #00376e);
357 357 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),color-stop(100%, #00376e) );
358 358 background-image: -webkit-linear-gradient(top, #003b76, #00376e);
359 359 background-image: -o-linear-gradient(top, #003b76, #00376e);
360 360 background-image: linear-gradient(to bottom, #003b76, #00376e);
361 361 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',endColorstr='#00376e', GradientType=0 );
362 362 margin: 0;
363 363 padding: 0;
364 364 display: block;
365 365 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
366 366 -webkit-border-radius: 0px 0px 4px 4px;
367 367 -khtml-border-radius: 0px 0px 4px 4px;
368 368 border-radius: 0px 0px 4px 4px;
369 369 }
370 370 #header #header-inner.hover {
371 371 width: 100% !important;
372 372 -webkit-border-radius: 0px 0px 0px 0px;
373 373 -khtml-border-radius: 0px 0px 0px 0px;
374 374 border-radius: 0px 0px 0px 0px;
375 375 position: fixed !important;
376 376 z-index: 10000;
377 377 }
378 378
379 379 .ie7 #header #header-inner.hover,
380 380 .ie8 #header #header-inner.hover,
381 381 .ie9 #header #header-inner.hover
382 382 {
383 383 z-index: auto !important;
384 384 }
385 385
386 386 .header-pos-fix, .anchor {
387 387 margin-top: -46px;
388 388 padding-top: 46px;
389 389 }
390 390
391 391 #header #header-inner #home a {
392 392 height: 40px;
393 393 width: 46px;
394 394 display: block;
395 395 background-position: 0 0;
396 396 margin: 0;
397 397 padding: 0;
398 398 }
399 399
400 400 #header #header-inner #home a:hover {
401 401 background-position: 0 -40px;
402 402 }
403 403
404 404 #header #header-inner #logo {
405 405 float: left;
406 406 position: absolute;
407 407 }
408 408
409 409 #header #header-inner #logo h1 {
410 410 color: #FFF;
411 411 font-size: 20px;
412 412 margin: 12px 0 0 13px;
413 413 padding: 0;
414 414 }
415 415
416 416 #header #header-inner #logo a {
417 417 color: #fff;
418 418 text-decoration: none;
419 419 }
420 420
421 421 #header #header-inner #logo a:hover {
422 422 color: #bfe3ff;
423 423 }
424 424
425 425 #header #header-inner #quick {
426 426 position: relative;
427 427 float: right;
428 428 list-style-type: none;
429 429 list-style-position: outside;
430 430 margin: 4px 8px 0 0;
431 431 padding: 0;
432 432 border-radius: 4px;
433 433 }
434 434
435 435 #header #header-inner #quick li span.short {
436 436 padding: 9px 6px 8px 6px;
437 437 }
438 438
439 439 #header #header-inner #quick li span {
440 440 display: inline;
441 441 margin: 0;
442 442 }
443 443
444 444 #header #header-inner #quick li span.normal {
445 445 border: none;
446 446 padding: 10px 12px 8px;
447 447 }
448 448
449 449 #header #header-inner #quick li span.icon {
450 450 border-left: none;
451 451 padding-left: 10px;
452 452 }
453 453
454 454 #header #header-inner #quick li span.icon_short {
455 455 top: 0;
456 456 left: 0;
457 457 border-left: none;
458 458 border-right: 1px solid #2e5c89;
459 459 padding: 8px 6px 4px;
460 460 }
461 461
462 462 #header #header-inner #quick li span.icon img, #header #header-inner #quick li span.icon_short img {
463 463 vertical-align: middle;
464 464 margin-bottom: 2px;
465 465 }
466 466
467 467 #header #header-inner #quick ul.repo_switcher {
468 468 max-height: 275px;
469 469 overflow-x: hidden;
470 470 overflow-y: auto;
471 471 }
472 472
473 473 #header #header-inner #quick ul.repo_switcher li.qfilter_rs {
474 474 padding: 2px 3px;
475 475 padding-right: 17px;
476 476 }
477 477
478 478 #header #header-inner #quick ul.repo_switcher li.qfilter_rs input {
479 479 width: 100%;
480 480 border-radius: 10px;
481 481 padding: 2px 7px;
482 482 }
483 483
484 484 #header #header-inner #quick .repo_switcher_type {
485 485 position: absolute;
486 486 left: 0;
487 487 top: 9px;
488 488 margin: 0px 2px 0px 2px;
489 489 }
490 490
491 491 #header #header-inner #quick li ul li a.journal, #header #header-inner #quick li ul li a.journal:hover {
492 492 background-image: url("../images/icons/book.png");
493 493 }
494 494
495 495 #header #header-inner #quick li ul li a.private_repo, #header #header-inner #quick li ul li a.private_repo:hover {
496 496 background-image: url("../images/icons/private_repo.png")
497 497 }
498 498
499 499 #header #header-inner #quick li ul li a.public_repo, #header #header-inner #quick li ul li a.public_repo:hover {
500 500 background-image: url("../images/icons/public_repo.png");
501 501 }
502 502
503 503 #header #header-inner #quick li ul li a.hg, #header #header-inner #quick li ul li a.hg:hover {
504 504 background-image: url("../images/icons/hgicon.png");
505 505 padding-left: 42px;
506 506 background-position: 20px 9px;
507 507 }
508 508
509 509 #header #header-inner #quick li ul li a.git, #header #header-inner #quick li ul li a.git:hover {
510 510 background-image: url("../images/icons/giticon.png");
511 511 padding-left: 42px;
512 512 background-position: 20px 9px;
513 513 }
514 514
515 515 #header #header-inner #quick li ul li a.repos, #header #header-inner #quick li ul li a.repos:hover {
516 516 background-image: url("../images/icons/database_edit.png");
517 517 }
518 518
519 519 #header #header-inner #quick li ul li a.repos_groups, #header #header-inner #quick li ul li a.repos_groups:hover {
520 520 background-image: url("../images/icons/database_link.png");
521 521 }
522 522
523 523 #header #header-inner #quick li ul li a.users, #header #header-inner #quick li ul li a.users:hover {
524 524 background-image: url("../images/icons/user_edit.png");
525 525 }
526 526
527 527 #header #header-inner #quick li ul li a.groups, #header #header-inner #quick li ul li a.groups:hover {
528 528 background-image: url("../images/icons/group_edit.png");
529 529 }
530 530
531 531 #header #header-inner #quick li ul li a.defaults, #header #header-inner #quick li ul li a.defaults:hover {
532 532 background-image: url("../images/icons/wrench.png");
533 533 }
534 534
535 535 #header #header-inner #quick li ul li a.settings, #header #header-inner #quick li ul li a.settings:hover {
536 536 background-image: url("../images/icons/cog.png");
537 537 }
538 538
539 539 #header #header-inner #quick li ul li a.permissions, #header #header-inner #quick li ul li a.permissions:hover {
540 540 background-image: url("../images/icons/key.png");
541 541 }
542 542
543 543 #header #header-inner #quick li ul li a.ldap, #header #header-inner #quick li ul li a.ldap:hover {
544 544 background-image: url("../images/icons/server_key.png");
545 545 }
546 546
547 547 #header #header-inner #quick li ul li a.fork, #header #header-inner #quick li ul li a.fork:hover {
548 548 background-image: url("../images/icons/arrow_divide.png");
549 549 }
550 550
551 551 #header #header-inner #quick li ul li a.locking_add, #header #header-inner #quick li ul li a.locking_add:hover {
552 552 background-image: url("../images/icons/lock_add.png");
553 553 }
554 554
555 555 #header #header-inner #quick li ul li a.locking_del, #header #header-inner #quick li ul li a.locking_del:hover {
556 556 background-image: url("../images/icons/lock_delete.png");
557 557 }
558 558
559 559 #header #header-inner #quick li ul li a.pull_request, #header #header-inner #quick li ul li a.pull_request:hover {
560 560 background-image: url("../images/icons/arrow_join.png") ;
561 561 }
562 562
563 563 #header #header-inner #quick li ul li a.compare_request, #header #header-inner #quick li ul li a.compare_request:hover {
564 564 background-image: url("../images/icons/arrow_inout.png");
565 565 }
566 566
567 567 #header #header-inner #quick li ul li a.search, #header #header-inner #quick li ul li a.search:hover {
568 568 background-image: url("../images/icons/search_16.png");
569 569 }
570 570
571 571 #header #header-inner #quick li ul li a.delete, #header #header-inner #quick li ul li a.delete:hover {
572 572 background-image: url("../images/icons/delete.png");
573 573 }
574 574
575 575 #header #header-inner #quick li ul li a.branches, #header #header-inner #quick li ul li a.branches:hover {
576 576 background-image: url("../images/icons/arrow_branch.png");
577 577 }
578 578
579 579 #header #header-inner #quick li ul li a.tags,
580 580 #header #header-inner #quick li ul li a.tags:hover {
581 581 background: #FFF url("../images/icons/tag_blue.png") no-repeat 4px 9px;
582 582 width: 167px;
583 583 margin: 0;
584 584 padding: 12px 9px 7px 24px;
585 585 }
586 586
587 587 #header #header-inner #quick li ul li a.bookmarks,
588 588 #header #header-inner #quick li ul li a.bookmarks:hover {
589 589 background: #FFF url("../images/icons/tag_green.png") no-repeat 4px 9px;
590 590 width: 167px;
591 591 margin: 0;
592 592 padding: 12px 9px 7px 24px;
593 593 }
594 594
595 595 #header #header-inner #quick li ul li a.admin,
596 596 #header #header-inner #quick li ul li a.admin:hover {
597 597 background: #FFF url("../images/icons/cog_edit.png") no-repeat 4px 9px;
598 598 width: 167px;
599 599 margin: 0;
600 600 padding: 12px 9px 7px 24px;
601 601 }
602 602
603 603 .groups_breadcrumbs a {
604 604 color: #fff;
605 605 }
606 606
607 607 .groups_breadcrumbs a:hover {
608 608 color: #bfe3ff;
609 609 text-decoration: none;
610 610 }
611 611
612 612 td.quick_repo_menu {
613 613 background: #FFF url("../images/vertical-indicator.png") 8px 50% no-repeat !important;
614 614 cursor: pointer;
615 615 width: 8px;
616 616 border: 1px solid transparent;
617 617 }
618 618
619 619 td.quick_repo_menu.active {
620 620 background: url("../images/dt-arrow-dn.png") no-repeat scroll 5px 50% #FFFFFF !important;
621 621 border: 1px solid #003367;
622 622 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
623 623 cursor: pointer;
624 624 }
625 625
626 626 td.quick_repo_menu .menu_items {
627 627 margin-top: 10px;
628 628 margin-left: -6px;
629 629 width: 150px;
630 630 position: absolute;
631 631 background-color: #FFF;
632 632 background: none repeat scroll 0 0 #FFFFFF;
633 633 border-color: #003367 #666666 #666666;
634 634 border-right: 1px solid #666666;
635 635 border-style: solid;
636 636 border-width: 1px;
637 637 box-shadow: 2px 8px 4px rgba(0, 0, 0, 0.2);
638 638 border-top-style: none;
639 639 }
640 640
641 641 td.quick_repo_menu .menu_items li {
642 642 padding: 0 !important;
643 643 }
644 644
645 645 td.quick_repo_menu .menu_items a {
646 646 display: block;
647 647 padding: 4px 12px 4px 8px;
648 648 }
649 649
650 650 td.quick_repo_menu .menu_items a:hover {
651 651 background-color: #EEE;
652 652 text-decoration: none;
653 653 }
654 654
655 655 td.quick_repo_menu .menu_items .icon img {
656 656 margin-bottom: -2px;
657 657 }
658 658
659 659 td.quick_repo_menu .menu_items.hidden {
660 660 display: none;
661 661 }
662 662
663 663 .yui-dt-first th {
664 664 text-align: left;
665 665 }
666 666
667 667 /*
668 668 Copyright (c) 2011, Yahoo! Inc. All rights reserved.
669 669 Code licensed under the BSD License:
670 670 http://developer.yahoo.com/yui/license.html
671 671 version: 2.9.0
672 672 */
673 673 .yui-skin-sam .yui-dt-mask {
674 674 position: absolute;
675 675 z-index: 9500;
676 676 }
677 677 .yui-dt-tmp {
678 678 position: absolute;
679 679 left: -9000px;
680 680 }
681 681 .yui-dt-scrollable .yui-dt-bd { overflow: auto }
682 682 .yui-dt-scrollable .yui-dt-hd {
683 683 overflow: hidden;
684 684 position: relative;
685 685 }
686 686 .yui-dt-scrollable .yui-dt-bd thead tr,
687 687 .yui-dt-scrollable .yui-dt-bd thead th {
688 688 position: absolute;
689 689 left: -1500px;
690 690 }
691 691 .yui-dt-scrollable tbody { -moz-outline: 0 }
692 692 .yui-skin-sam thead .yui-dt-sortable { cursor: pointer }
693 693 .yui-skin-sam thead .yui-dt-draggable { cursor: move }
694 694 .yui-dt-coltarget {
695 695 position: absolute;
696 696 z-index: 999;
697 697 }
698 698 .yui-dt-hd { zoom: 1 }
699 699 th.yui-dt-resizeable .yui-dt-resizerliner { position: relative }
700 700 .yui-dt-resizer {
701 701 position: absolute;
702 702 right: 0;
703 703 bottom: 0;
704 704 height: 100%;
705 705 cursor: e-resize;
706 706 cursor: col-resize;
707 707 background-color: #CCC;
708 708 opacity: 0;
709 709 filter: alpha(opacity=0);
710 710 }
711 711 .yui-dt-resizerproxy {
712 712 visibility: hidden;
713 713 position: absolute;
714 714 z-index: 9000;
715 715 background-color: #CCC;
716 716 opacity: 0;
717 717 filter: alpha(opacity=0);
718 718 }
719 719 th.yui-dt-hidden .yui-dt-liner,
720 720 td.yui-dt-hidden .yui-dt-liner,
721 721 th.yui-dt-hidden .yui-dt-resizer { display: none }
722 722 .yui-dt-editor,
723 723 .yui-dt-editor-shim {
724 724 position: absolute;
725 725 z-index: 9000;
726 726 }
727 727 .yui-skin-sam .yui-dt table {
728 728 margin: 0;
729 729 padding: 0;
730 730 font-family: arial;
731 731 font-size: inherit;
732 732 border-collapse: separate;
733 733 *border-collapse: collapse;
734 734 border-spacing: 0;
735 735 border: 1px solid #7f7f7f;
736 736 }
737 737 .yui-skin-sam .yui-dt thead { border-spacing: 0 }
738 738 .yui-skin-sam .yui-dt caption {
739 739 color: #000;
740 740 font-size: 85%;
741 741 font-weight: normal;
742 742 font-style: italic;
743 743 line-height: 1;
744 744 padding: 1em 0;
745 745 text-align: center;
746 746 }
747 747 .yui-skin-sam .yui-dt th { background: #d8d8da url(../images/sprite.png) repeat-x 0 0 }
748 748 .yui-skin-sam .yui-dt th,
749 749 .yui-skin-sam .yui-dt th a {
750 750 font-weight: normal;
751 751 text-decoration: none;
752 752 color: #000;
753 753 vertical-align: bottom;
754 754 }
755 755 .yui-skin-sam .yui-dt th {
756 756 margin: 0;
757 757 padding: 0;
758 758 border: 0;
759 759 border-right: 1px solid #cbcbcb;
760 760 }
761 761 .yui-skin-sam .yui-dt tr.yui-dt-first td { border-top: 1px solid #7f7f7f }
762 762 .yui-skin-sam .yui-dt th .yui-dt-liner { white-space: nowrap }
763 763 .yui-skin-sam .yui-dt-liner {
764 764 margin: 0;
765 765 padding: 0;
766 766 }
767 767 .yui-skin-sam .yui-dt-coltarget {
768 768 width: 5px;
769 769 background-color: red;
770 770 }
771 771 .yui-skin-sam .yui-dt td {
772 772 margin: 0;
773 773 padding: 0;
774 774 border: 0;
775 775 border-right: 1px solid #cbcbcb;
776 776 text-align: left;
777 777 }
778 778 .yui-skin-sam .yui-dt-list td { border-right: 0 }
779 779 .yui-skin-sam .yui-dt-resizer { width: 6px }
780 780 .yui-skin-sam .yui-dt-mask {
781 781 background-color: #000;
782 782 opacity: .25;
783 783 filter: alpha(opacity=25);
784 784 }
785 785 .yui-skin-sam .yui-dt-message { background-color: #FFF }
786 786 .yui-skin-sam .yui-dt-scrollable table { border: 0 }
787 787 .yui-skin-sam .yui-dt-scrollable .yui-dt-hd {
788 788 border-left: 1px solid #7f7f7f;
789 789 border-top: 1px solid #7f7f7f;
790 790 border-right: 1px solid #7f7f7f;
791 791 }
792 792 .yui-skin-sam .yui-dt-scrollable .yui-dt-bd {
793 793 border-left: 1px solid #7f7f7f;
794 794 border-bottom: 1px solid #7f7f7f;
795 795 border-right: 1px solid #7f7f7f;
796 796 background-color: #FFF;
797 797 }
798 798 .yui-skin-sam .yui-dt-scrollable .yui-dt-data tr.yui-dt-last td { border-bottom: 1px solid #7f7f7f }
799 799 .yui-skin-sam th.yui-dt-asc,
800 800 .yui-skin-sam th.yui-dt-desc { background: url(../images/sprite.png) repeat-x 0 -100px }
801 801 .yui-skin-sam th.yui-dt-sortable .yui-dt-label { margin-right: 10px }
802 802 .yui-skin-sam th.yui-dt-asc .yui-dt-liner { background: url(../images/dt-arrow-up.png) no-repeat right }
803 803 .yui-skin-sam th.yui-dt-desc .yui-dt-liner { background: url(../images/dt-arrow-dn.png) no-repeat right }
804 804 tbody .yui-dt-editable { cursor: pointer }
805 805 .yui-dt-editor {
806 806 text-align: left;
807 807 background-color: #f2f2f2;
808 808 border: 1px solid #808080;
809 809 padding: 6px;
810 810 }
811 811 .yui-dt-editor label {
812 812 padding-left: 4px;
813 813 padding-right: 6px;
814 814 }
815 815 .yui-dt-editor .yui-dt-button {
816 816 padding-top: 6px;
817 817 text-align: right;
818 818 }
819 819 .yui-dt-editor .yui-dt-button button {
820 820 background: url(../images/sprite.png) repeat-x 0 0;
821 821 border: 1px solid #999;
822 822 width: 4em;
823 823 height: 1.8em;
824 824 margin-left: 6px;
825 825 }
826 826 .yui-dt-editor .yui-dt-button button.yui-dt-default {
827 827 background: url(../images/sprite.png) repeat-x 0 -1400px;
828 828 background-color: #5584e0;
829 829 border: 1px solid #304369;
830 830 color: #FFF;
831 831 }
832 832 .yui-dt-editor .yui-dt-button button:hover {
833 833 background: url(../images/sprite.png) repeat-x 0 -1300px;
834 834 color: #000;
835 835 }
836 836 .yui-dt-editor .yui-dt-button button:active {
837 837 background: url(../images/sprite.png) repeat-x 0 -1700px;
838 838 color: #000;
839 839 }
840 840 .yui-skin-sam tr.yui-dt-even { background-color: #FFF }
841 841 .yui-skin-sam tr.yui-dt-odd { background-color: #edf5ff }
842 842 .yui-skin-sam tr.yui-dt-even td.yui-dt-asc,
843 843 .yui-skin-sam tr.yui-dt-even td.yui-dt-desc { background-color: #edf5ff }
844 844 .yui-skin-sam tr.yui-dt-odd td.yui-dt-asc,
845 845 .yui-skin-sam tr.yui-dt-odd td.yui-dt-desc { background-color: #dbeaff }
846 846 .yui-skin-sam .yui-dt-list tr.yui-dt-even { background-color: #FFF }
847 847 .yui-skin-sam .yui-dt-list tr.yui-dt-odd { background-color: #FFF }
848 848 .yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-asc,
849 849 .yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-desc { background-color: #edf5ff }
850 850 .yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-asc,
851 851 .yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-desc { background-color: #edf5ff }
852 852 .yui-skin-sam th.yui-dt-highlighted,
853 853 .yui-skin-sam th.yui-dt-highlighted a { background-color: #b2d2ff }
854 854 .yui-skin-sam tr.yui-dt-highlighted,
855 855 .yui-skin-sam tr.yui-dt-highlighted td.yui-dt-asc,
856 856 .yui-skin-sam tr.yui-dt-highlighted td.yui-dt-desc,
857 857 .yui-skin-sam tr.yui-dt-even td.yui-dt-highlighted,
858 858 .yui-skin-sam tr.yui-dt-odd td.yui-dt-highlighted {
859 859 cursor: pointer;
860 860 background-color: #b2d2ff;
861 861 }
862 862 .yui-skin-sam .yui-dt-list th.yui-dt-highlighted,
863 863 .yui-skin-sam .yui-dt-list th.yui-dt-highlighted a { background-color: #b2d2ff }
864 864 .yui-skin-sam .yui-dt-list tr.yui-dt-highlighted,
865 865 .yui-skin-sam .yui-dt-list tr.yui-dt-highlighted td.yui-dt-asc,
866 866 .yui-skin-sam .yui-dt-list tr.yui-dt-highlighted td.yui-dt-desc,
867 867 .yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-highlighted,
868 868 .yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-highlighted {
869 869 cursor: pointer;
870 870 background-color: #b2d2ff;
871 871 }
872 872 .yui-skin-sam th.yui-dt-selected,
873 873 .yui-skin-sam th.yui-dt-selected a { background-color: #446cd7 }
874 874 .yui-skin-sam tr.yui-dt-selected td,
875 875 .yui-skin-sam tr.yui-dt-selected td.yui-dt-asc,
876 876 .yui-skin-sam tr.yui-dt-selected td.yui-dt-desc {
877 877 background-color: #426fd9;
878 878 color: #FFF;
879 879 }
880 880 .yui-skin-sam tr.yui-dt-even td.yui-dt-selected,
881 881 .yui-skin-sam tr.yui-dt-odd td.yui-dt-selected {
882 882 background-color: #446cd7;
883 883 color: #FFF;
884 884 }
885 885 .yui-skin-sam .yui-dt-list th.yui-dt-selected,
886 886 .yui-skin-sam .yui-dt-list th.yui-dt-selected a { background-color: #446cd7 }
887 887 .yui-skin-sam .yui-dt-list tr.yui-dt-selected td,
888 888 .yui-skin-sam .yui-dt-list tr.yui-dt-selected td.yui-dt-asc,
889 889 .yui-skin-sam .yui-dt-list tr.yui-dt-selected td.yui-dt-desc {
890 890 background-color: #426fd9;
891 891 color: #FFF;
892 892 }
893 893 .yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-selected,
894 894 .yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-selected {
895 895 background-color: #446cd7;
896 896 color: #FFF;
897 897 }
898 898 .yui-skin-sam .yui-dt-paginator {
899 899 display: block;
900 900 margin: 6px 0;
901 901 white-space: nowrap;
902 902 }
903 903 .yui-skin-sam .yui-dt-paginator .yui-dt-first,
904 904 .yui-skin-sam .yui-dt-paginator .yui-dt-last,
905 905 .yui-skin-sam .yui-dt-paginator .yui-dt-selected { padding: 2px 6px }
906 906 .yui-skin-sam .yui-dt-paginator a.yui-dt-first,
907 907 .yui-skin-sam .yui-dt-paginator a.yui-dt-last { text-decoration: none }
908 908 .yui-skin-sam .yui-dt-paginator .yui-dt-previous,
909 909 .yui-skin-sam .yui-dt-paginator .yui-dt-next { display: none }
910 910 .yui-skin-sam a.yui-dt-page {
911 911 border: 1px solid #cbcbcb;
912 912 padding: 2px 6px;
913 913 text-decoration: none;
914 914 background-color: #fff;
915 915 }
916 916 .yui-skin-sam .yui-dt-selected {
917 917 border: 1px solid #fff;
918 918 background-color: #fff;
919 919 }
920 920
921 921 #content #left {
922 922 left: 0;
923 923 width: 280px;
924 924 position: absolute;
925 925 }
926 926
927 927 #content #right {
928 928 margin: 0 60px 10px 290px;
929 929 }
930 930
931 931 #content div.box {
932 932 clear: both;
933 933 background: #fff;
934 934 margin: 0 0 10px;
935 935 padding: 0 0 10px;
936 936 -webkit-border-radius: 4px 4px 4px 4px;
937 937 -khtml-border-radius: 4px 4px 4px 4px;
938 938 border-radius: 4px 4px 4px 4px;
939 939 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
940 940 }
941 941
942 942 #content div.box-left {
943 943 width: 49%;
944 944 clear: none;
945 945 float: left;
946 946 margin: 0 0 10px;
947 947 }
948 948
949 949 #content div.box-right {
950 950 width: 49%;
951 951 clear: none;
952 952 float: right;
953 953 margin: 0 0 10px;
954 954 }
955 955
956 956 #content div.box div.title {
957 957 clear: both;
958 958 overflow: hidden;
959 959 background-color: #003B76;
960 960 background-repeat: repeat-x;
961 961 background-image: -khtml-gradient(linear, left top, left bottom, from(#003B76), to(#00376E) );
962 962 background-image: -moz-linear-gradient(top, #003b76, #00376e);
963 963 background-image: -ms-linear-gradient(top, #003b76, #00376e);
964 964 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76), color-stop(100%, #00376e) );
965 965 background-image: -webkit-linear-gradient(top, #003b76, #00376e);
966 966 background-image: -o-linear-gradient(top, #003b76, #00376e);
967 967 background-image: linear-gradient(to bottom, #003b76, #00376e);
968 968 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76', endColorstr='#00376e', GradientType=0 );
969 969 margin: 0 0 20px;
970 970 padding: 0;
971 971 border-radius: 4px 4px 0 0;
972 972 }
973 973
974 974 #content div.box div.title h5 {
975 975 float: left;
976 976 border: none;
977 977 color: #fff;
978 978 margin: 0;
979 979 padding: 11px 0 11px 10px;
980 980 }
981 981
982 982 #content div.box div.title .link-white {
983 983 color: #FFFFFF;
984 984 }
985 985
986 986 #content div.box div.title .link-white.current {
987 987 color: #BFE3FF;
988 988 }
989 989
990 990 #content div.box div.title ul.links li {
991 991 list-style: none;
992 992 float: left;
993 993 margin: 0;
994 994 padding: 0;
995 995 }
996 996
997 997 #content div.box div.title ul.links li a {
998 998 border-left: 1px solid #316293;
999 999 color: #FFFFFF;
1000 1000 display: block;
1001 1001 float: left;
1002 1002 font-size: 13px;
1003 1003 font-weight: 700;
1004 1004 height: 1%;
1005 1005 margin: 0;
1006 1006 padding: 11px 22px 12px;
1007 1007 text-decoration: none;
1008 1008 }
1009 1009
1010 1010 #content div.box h1, #content div.box h2, #content div.box h3, #content div.box h4, #content div.box h5, #content div.box h6,
1011 1011 #content div.box div.h1, #content div.box div.h2, #content div.box div.h3, #content div.box div.h4, #content div.box div.h5, #content div.box div.h6 {
1012 1012 clear: both;
1013 1013 overflow: hidden;
1014 border-bottom: 1px solid #DDD;
1015 margin: 10px 20px;
1016 padding: 0 0 15px;
1014 margin: 8px 20px 5px;
1017 1015 }
1018 1016
1019 1017 #content div.box p {
1020 1018 color: #5f5f5f;
1021 1019 font-size: 12px;
1022 1020 line-height: 150%;
1023 1021 margin: 0 24px 10px;
1024 1022 padding: 0;
1025 1023 }
1026 1024
1027 1025 #content div.box blockquote {
1028 1026 border-left: 4px solid #DDD;
1029 1027 color: #5f5f5f;
1030 1028 font-size: 11px;
1031 1029 line-height: 150%;
1032 1030 margin: 0 34px;
1033 1031 padding: 0 0 0 14px;
1034 1032 }
1035 1033
1036 1034 #content div.box blockquote p {
1037 1035 margin: 10px 0;
1038 1036 padding: 0;
1039 1037 }
1040 1038
1041 1039 #content div.box dl {
1042 1040 margin: 10px 0px;
1043 1041 }
1044 1042
1045 1043 #content div.box dt {
1046 1044 font-size: 12px;
1047 1045 margin: 0;
1048 1046 }
1049 1047
1050 1048 #content div.box dd {
1051 1049 font-size: 12px;
1052 1050 margin: 0;
1053 1051 padding: 8px 0 8px 15px;
1054 1052 }
1055 1053
1056 1054 #content div.box li {
1057 1055 font-size: 12px;
1058 1056 padding: 4px 0;
1059 1057 }
1060 1058
1061 1059 #content div.box ul.disc, #content div.box ul.circle {
1062 1060 margin: 10px 24px 10px 38px;
1063 1061 }
1064 1062
1065 1063 #content div.box ul.square {
1066 1064 margin: 10px 24px 10px 40px;
1067 1065 }
1068 1066
1069 1067 #content div.box img.left {
1070 1068 border: none;
1071 1069 float: left;
1072 1070 margin: 10px 10px 10px 0;
1073 1071 }
1074 1072
1075 1073 #content div.box img.right {
1076 1074 border: none;
1077 1075 float: right;
1078 1076 margin: 10px 0 10px 10px;
1079 1077 }
1080 1078
1081 1079 #content div.box div.messages {
1082 1080 clear: both;
1083 1081 overflow: hidden;
1084 1082 margin: 0 20px;
1085 1083 padding: 0;
1086 1084 }
1087 1085
1088 1086 #content div.box div.message {
1089 1087 clear: both;
1090 1088 overflow: hidden;
1091 1089 margin: 0;
1092 1090 padding: 5px 0;
1093 1091 white-space: pre-wrap;
1094 1092 }
1095 1093 #content div.box div.expand {
1096 1094 width: 110%;
1097 1095 height: 14px;
1098 1096 font-size: 10px;
1099 1097 text-align: center;
1100 1098 cursor: pointer;
1101 1099 color: #666;
1102 1100
1103 1101 background: -webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(255,255,255,0)),color-stop(100%,rgba(64,96,128,0.1)));
1104 1102 background: -webkit-linear-gradient(top,rgba(255,255,255,0),rgba(64,96,128,0.1));
1105 1103 background: -moz-linear-gradient(top,rgba(255,255,255,0),rgba(64,96,128,0.1));
1106 1104 background: -o-linear-gradient(top,rgba(255,255,255,0),rgba(64,96,128,0.1));
1107 1105 background: -ms-linear-gradient(top,rgba(255,255,255,0),rgba(64,96,128,0.1));
1108 1106 background: linear-gradient(to bottom,rgba(255,255,255,0),rgba(64,96,128,0.1));
1109 1107
1110 1108 display: none;
1111 1109 overflow: hidden;
1112 1110 }
1113 1111 #content div.box div.expand .expandtext {
1114 1112 background-color: #ffffff;
1115 1113 padding: 2px;
1116 1114 border-radius: 2px;
1117 1115 }
1118 1116
1119 1117 #content div.box div.message a {
1120 1118 font-weight: 400 !important;
1121 1119 }
1122 1120
1123 1121 #content div.box div.message div.image {
1124 1122 float: left;
1125 1123 margin: 9px 0 0 5px;
1126 1124 padding: 6px;
1127 1125 }
1128 1126
1129 1127 #content div.box div.message div.image img {
1130 1128 vertical-align: middle;
1131 1129 margin: 0;
1132 1130 }
1133 1131
1134 1132 #content div.box div.message div.text {
1135 1133 float: left;
1136 1134 margin: 0;
1137 1135 padding: 9px 6px;
1138 1136 }
1139 1137
1140 1138 #content div.box div.message div.dismiss a {
1141 1139 height: 16px;
1142 1140 width: 16px;
1143 1141 display: block;
1144 1142 background: url("../images/icons/cross.png") no-repeat;
1145 1143 margin: 15px 14px 0 0;
1146 1144 padding: 0;
1147 1145 }
1148 1146
1149 1147 #content div.box div.message div.text h1, #content div.box div.message div.text h2, #content div.box div.message div.text h3, #content div.box div.message div.text h4, #content div.box div.message div.text h5, #content div.box div.message div.text h6 {
1150 1148 border: none;
1151 1149 margin: 0;
1152 1150 padding: 0;
1153 1151 }
1154 1152
1155 1153 #content div.box div.message div.text span {
1156 1154 height: 1%;
1157 1155 display: block;
1158 1156 margin: 0;
1159 1157 padding: 5px 0 0;
1160 1158 }
1161 1159
1162 1160 #content div.box div.message-error {
1163 1161 height: 1%;
1164 1162 clear: both;
1165 1163 overflow: hidden;
1166 1164 background: #FBE3E4;
1167 1165 border: 1px solid #FBC2C4;
1168 1166 color: #860006;
1169 1167 }
1170 1168
1171 1169 #content div.box div.message-error h6 {
1172 1170 color: #860006;
1173 1171 }
1174 1172
1175 1173 #content div.box div.message-warning {
1176 1174 height: 1%;
1177 1175 clear: both;
1178 1176 overflow: hidden;
1179 1177 background: #FFF6BF;
1180 1178 border: 1px solid #FFD324;
1181 1179 color: #5f5200;
1182 1180 }
1183 1181
1184 1182 #content div.box div.message-warning h6 {
1185 1183 color: #5f5200;
1186 1184 }
1187 1185
1188 1186 #content div.box div.message-notice {
1189 1187 height: 1%;
1190 1188 clear: both;
1191 1189 overflow: hidden;
1192 1190 background: #8FBDE0;
1193 1191 border: 1px solid #6BACDE;
1194 1192 color: #003863;
1195 1193 }
1196 1194
1197 1195 #content div.box div.message-notice h6 {
1198 1196 color: #003863;
1199 1197 }
1200 1198
1201 1199 #content div.box div.message-success {
1202 1200 height: 1%;
1203 1201 clear: both;
1204 1202 overflow: hidden;
1205 1203 background: #E6EFC2;
1206 1204 border: 1px solid #C6D880;
1207 1205 color: #4e6100;
1208 1206 }
1209 1207
1210 1208 #content div.box div.message-success h6 {
1211 1209 color: #4e6100;
1212 1210 }
1213 1211
1214 1212 #content div.box div.form div.fields div.field {
1215 1213 height: 1%;
1216 1214 min-height: 12px;
1217 1215 border-bottom: 1px solid #DDD;
1218 1216 clear: both;
1219 1217 margin: 0;
1220 1218 padding: 10px 0;
1221 1219 }
1222 1220
1223 1221 #content div.box div.form div.fields div.field-first {
1224 1222 padding: 0 0 10px;
1225 1223 }
1226 1224
1227 1225 #content div.box div.form div.fields div.field-noborder {
1228 1226 border-bottom: 0 !important;
1229 1227 }
1230 1228
1231 1229 #content div.box div.form div.fields div.field span.error-message {
1232 1230 height: 1%;
1233 1231 display: inline-block;
1234 1232 color: red;
1235 1233 margin: 8px 0 0 4px;
1236 1234 padding: 0;
1237 1235 }
1238 1236
1239 1237 #content div.box div.form div.fields div.field span.success {
1240 1238 height: 1%;
1241 1239 display: block;
1242 1240 color: #316309;
1243 1241 margin: 8px 0 0;
1244 1242 padding: 0;
1245 1243 }
1246 1244
1247 1245 #content div.box div.form div.fields div.field div.label {
1248 1246 left: 70px;
1249 1247 width: 155px;
1250 1248 position: absolute;
1251 1249 margin: 0;
1252 1250 padding: 5px 0 0 0px;
1253 1251 }
1254 1252
1255 1253 #content div.box div.form div.fields div.field div.label-summary {
1256 1254 left: 30px;
1257 1255 width: 155px;
1258 1256 position: absolute;
1259 1257 margin: 0;
1260 1258 padding: 0px 0 0 0px;
1261 1259 }
1262 1260
1263 1261 #content div.box-left div.form div.fields div.field div.label,
1264 1262 #content div.box-right div.form div.fields div.field div.label,
1265 1263 #content div.box-left div.form div.fields div.field div.label,
1266 1264 #content div.box-left div.form div.fields div.field div.label-summary,
1267 1265 #content div.box-right div.form div.fields div.field div.label-summary,
1268 1266 #content div.box-left div.form div.fields div.field div.label-summary {
1269 1267 clear: both;
1270 1268 overflow: hidden;
1271 1269 left: 0;
1272 1270 width: auto;
1273 1271 position: relative;
1274 1272 margin: 0;
1275 1273 padding: 0 0 8px;
1276 1274 }
1277 1275
1278 1276 #content div.box div.form div.fields div.field div.label-select {
1279 1277 padding: 5px 0 0 5px;
1280 1278 }
1281 1279
1282 1280 #content div.box-left div.form div.fields div.field div.label-select,
1283 1281 #content div.box-right div.form div.fields div.field div.label-select {
1284 1282 padding: 0 0 8px;
1285 1283 }
1286 1284
1287 1285 #content div.box-left div.form div.fields div.field div.label-textarea,
1288 1286 #content div.box-right div.form div.fields div.field div.label-textarea {
1289 1287 padding: 0 0 8px !important;
1290 1288 }
1291 1289
1292 1290 #content div.box div.form div.fields div.field div.label label, div.label label {
1293 1291 color: #393939;
1294 1292 font-weight: 700;
1295 1293 }
1296 1294 #content div.box div.form div.fields div.field div.label label, div.label-summary label {
1297 1295 color: #393939;
1298 1296 font-weight: 700;
1299 1297 }
1300 1298 #content div.box div.form div.fields div.field div.input {
1301 1299 margin: 0 0 0 200px;
1302 1300 }
1303 1301
1304 1302 #content div.box div.form div.fields div.field div.input.summary {
1305 1303 margin: 0 0 0 110px;
1306 1304 }
1307 1305 #content div.box div.form div.fields div.field div.input.summary-short {
1308 1306 margin: 0 0 0 110px;
1309 1307 }
1310 1308 #content div.box div.form div.fields div.field div.file {
1311 1309 margin: 0 0 0 200px;
1312 1310 }
1313 1311
1314 1312 #content div.box-left div.form div.fields div.field div.input, #content div.box-right div.form div.fields div.field div.input {
1315 1313 margin: 0 0 0 0px;
1316 1314 }
1317 1315
1318 1316 #content div.box div.form div.fields div.field div.input input,
1319 1317 .reviewer_ac input {
1320 1318 background: #FFF;
1321 1319 border-top: 1px solid #b3b3b3;
1322 1320 border-left: 1px solid #b3b3b3;
1323 1321 border-right: 1px solid #eaeaea;
1324 1322 border-bottom: 1px solid #eaeaea;
1325 1323 color: #000;
1326 1324 font-size: 12px;
1327 1325 margin: 0;
1328 1326 padding: 7px 7px 6px;
1329 1327 }
1330 1328
1331 1329 #content div.box div.form div.fields div.field div.input input#clone_url,
1332 1330 #content div.box div.form div.fields div.field div.input input#clone_url_id
1333 1331 {
1334 1332 font-size: 16px;
1335 1333 padding: 2px;
1336 1334 }
1337 1335
1338 1336 #content div.box div.form div.fields div.field div.file input {
1339 1337 background: none repeat scroll 0 0 #FFFFFF;
1340 1338 border-color: #B3B3B3 #EAEAEA #EAEAEA #B3B3B3;
1341 1339 border-style: solid;
1342 1340 border-width: 1px;
1343 1341 color: #000000;
1344 1342 font-size: 12px;
1345 1343 margin: 0;
1346 1344 padding: 7px 7px 6px;
1347 1345 }
1348 1346
1349 1347 input.disabled {
1350 1348 background-color: #F5F5F5 !important;
1351 1349 }
1352 1350 #content div.box div.form div.fields div.field div.input input.small {
1353 1351 width: 30%;
1354 1352 }
1355 1353
1356 1354 #content div.box div.form div.fields div.field div.input input.medium {
1357 1355 width: 55%;
1358 1356 }
1359 1357
1360 1358 #content div.box div.form div.fields div.field div.input input.large {
1361 1359 width: 85%;
1362 1360 }
1363 1361
1364 1362 #content div.box div.form div.fields div.field div.input input.date {
1365 1363 width: 177px;
1366 1364 }
1367 1365
1368 1366 #content div.box div.form div.fields div.field div.input input.button {
1369 1367 background: #D4D0C8;
1370 1368 border-top: 1px solid #FFF;
1371 1369 border-left: 1px solid #FFF;
1372 1370 border-right: 1px solid #404040;
1373 1371 border-bottom: 1px solid #404040;
1374 1372 color: #000;
1375 1373 margin: 0;
1376 1374 padding: 4px 8px;
1377 1375 }
1378 1376
1379 1377 #content div.box div.form div.fields div.field div.textarea {
1380 1378 border-top: 1px solid #b3b3b3;
1381 1379 border-left: 1px solid #b3b3b3;
1382 1380 border-right: 1px solid #eaeaea;
1383 1381 border-bottom: 1px solid #eaeaea;
1384 1382 margin: 0 0 0 200px;
1385 1383 padding: 7px 7px 6px;
1386 1384 }
1387 1385
1388 1386 #content div.box div.form div.fields div.field div.textarea-editor {
1389 1387 border: 1px solid #ddd;
1390 1388 padding: 0;
1391 1389 }
1392 1390
1393 1391 #content div.box div.form div.fields div.field div.textarea textarea {
1394 1392 width: 100%;
1395 1393 height: 220px;
1396 1394 overflow: hidden;
1397 1395 background: #FFF;
1398 1396 color: #000;
1399 1397 font-size: 12px;
1400 1398 outline: none;
1401 1399 border-width: 0;
1402 1400 margin: 0;
1403 1401 padding: 0;
1404 1402 }
1405 1403
1406 1404 #content div.box-left div.form div.fields div.field div.textarea textarea, #content div.box-right div.form div.fields div.field div.textarea textarea {
1407 1405 width: 100%;
1408 1406 height: 100px;
1409 1407 }
1410 1408
1411 1409 #content div.box div.form div.fields div.field div.textarea table {
1412 1410 width: 100%;
1413 1411 border: none;
1414 1412 margin: 0;
1415 1413 padding: 0;
1416 1414 }
1417 1415
1418 1416 #content div.box div.form div.fields div.field div.textarea table td {
1419 1417 background: #DDD;
1420 1418 border: none;
1421 1419 padding: 0;
1422 1420 }
1423 1421
1424 1422 #content div.box div.form div.fields div.field div.textarea table td table {
1425 1423 width: auto;
1426 1424 border: none;
1427 1425 margin: 0;
1428 1426 padding: 0;
1429 1427 }
1430 1428
1431 1429 #content div.box div.form div.fields div.field div.textarea table td table td {
1432 1430 font-size: 11px;
1433 1431 padding: 5px 5px 5px 0;
1434 1432 }
1435 1433
1436 1434 #content div.box div.form div.fields div.field input[type=text]:focus,
1437 1435 #content div.box div.form div.fields div.field input[type=password]:focus,
1438 1436 #content div.box div.form div.fields div.field input[type=file]:focus,
1439 1437 #content div.box div.form div.fields div.field textarea:focus,
1440 1438 #content div.box div.form div.fields div.field select:focus,
1441 1439 .reviewer_ac input:focus {
1442 1440 background: #f6f6f6;
1443 1441 border-color: #666;
1444 1442 }
1445 1443
1446 1444 .reviewer_ac {
1447 1445 padding: 10px
1448 1446 }
1449 1447
1450 1448 div.form div.fields div.field div.button {
1451 1449 margin: 0;
1452 1450 padding: 0 0 0 8px;
1453 1451 }
1454 1452 #content div.box table.noborder {
1455 1453 border: 1px solid transparent;
1456 1454 }
1457 1455
1458 1456 #content div.box table {
1459 1457 width: 100%;
1460 1458 border-collapse: separate;
1461 1459 margin: 0;
1462 1460 padding: 0;
1463 1461 border: 1px solid #eee;
1464 1462 -webkit-border-radius: 4px;
1465 1463 border-radius: 4px;
1466 1464 }
1467 1465
1468 1466 #content div.box table th {
1469 1467 background: #eee;
1470 1468 border-bottom: 1px solid #ddd;
1471 1469 padding: 5px 0px 5px 5px;
1472 1470 text-align: left;
1473 1471 }
1474 1472
1475 1473 #content div.box table th.left {
1476 1474 text-align: left;
1477 1475 }
1478 1476
1479 1477 #content div.box table th.right {
1480 1478 text-align: right;
1481 1479 }
1482 1480
1483 1481 #content div.box table th.center {
1484 1482 text-align: center;
1485 1483 }
1486 1484
1487 1485 #content div.box table th.selected {
1488 1486 vertical-align: middle;
1489 1487 padding: 0;
1490 1488 }
1491 1489
1492 1490 #content div.box table td {
1493 1491 background: #fff;
1494 1492 border-bottom: 1px solid #cdcdcd;
1495 1493 vertical-align: middle;
1496 1494 padding: 5px;
1497 1495 }
1498 1496
1499 1497 #content div.box table tr.selected td {
1500 1498 background: #FFC;
1501 1499 }
1502 1500
1503 1501 #content div.box table td.selected {
1504 1502 width: 3%;
1505 1503 text-align: center;
1506 1504 vertical-align: middle;
1507 1505 padding: 0;
1508 1506 }
1509 1507
1510 1508 #content div.box table td.action {
1511 1509 width: 45%;
1512 1510 text-align: left;
1513 1511 }
1514 1512
1515 1513 #content div.box table td.date {
1516 1514 width: 33%;
1517 1515 text-align: center;
1518 1516 }
1519 1517
1520 1518 #content div.box div.action {
1521 1519 float: right;
1522 1520 background: #FFF;
1523 1521 text-align: right;
1524 1522 margin: 10px 0 0;
1525 1523 padding: 0;
1526 1524 }
1527 1525
1528 1526 #content div.box div.action select {
1529 1527 font-size: 11px;
1530 1528 margin: 0;
1531 1529 }
1532 1530
1533 1531 #content div.box div.action .ui-selectmenu {
1534 1532 margin: 0;
1535 1533 padding: 0;
1536 1534 }
1537 1535
1538 1536 #content div.box div.pagination {
1539 1537 height: 1%;
1540 1538 clear: both;
1541 1539 overflow: hidden;
1542 1540 margin: 10px 0 0;
1543 1541 padding: 0;
1544 1542 }
1545 1543
1546 1544 #content div.box div.pagination ul.pager {
1547 1545 float: right;
1548 1546 text-align: right;
1549 1547 margin: 0;
1550 1548 padding: 0;
1551 1549 }
1552 1550
1553 1551 #content div.box div.pagination ul.pager li {
1554 1552 height: 1%;
1555 1553 float: left;
1556 1554 list-style: none;
1557 1555 background: #ebebeb url("../images/pager.png") repeat-x;
1558 1556 border-top: 1px solid #dedede;
1559 1557 border-left: 1px solid #cfcfcf;
1560 1558 border-right: 1px solid #c4c4c4;
1561 1559 border-bottom: 1px solid #c4c4c4;
1562 1560 color: #4A4A4A;
1563 1561 font-weight: 700;
1564 1562 margin: 0 0 0 4px;
1565 1563 padding: 0;
1566 1564 }
1567 1565
1568 1566 #content div.box div.pagination ul.pager li.separator {
1569 1567 padding: 6px;
1570 1568 }
1571 1569
1572 1570 #content div.box div.pagination ul.pager li.current {
1573 1571 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1574 1572 border-top: 1px solid #ccc;
1575 1573 border-left: 1px solid #bebebe;
1576 1574 border-right: 1px solid #b1b1b1;
1577 1575 border-bottom: 1px solid #afafaf;
1578 1576 color: #515151;
1579 1577 padding: 6px;
1580 1578 }
1581 1579
1582 1580 #content div.box div.pagination ul.pager li a {
1583 1581 height: 1%;
1584 1582 display: block;
1585 1583 float: left;
1586 1584 color: #515151;
1587 1585 text-decoration: none;
1588 1586 margin: 0;
1589 1587 padding: 6px;
1590 1588 }
1591 1589
1592 1590 #content div.box div.pagination ul.pager li a:hover,
1593 1591 #content div.box div.pagination ul.pager li a:active {
1594 1592 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1595 1593 border-top: 1px solid #ccc;
1596 1594 border-left: 1px solid #bebebe;
1597 1595 border-right: 1px solid #b1b1b1;
1598 1596 border-bottom: 1px solid #afafaf;
1599 1597 margin: -1px;
1600 1598 }
1601 1599
1602 1600 #content div.box div.pagination-right {
1603 1601 float: right;
1604 1602 }
1605 1603
1606 1604 #content div.box div.pagination-wh {
1607 1605 height: 1%;
1608 1606 overflow: hidden;
1609 1607 text-align: right;
1610 1608 margin: 10px 0 0;
1611 1609 padding: 0;
1612 1610 }
1613 1611
1614 1612 #content div.box div.pagination-wh > :first-child {
1615 1613 border-radius: 4px 0px 0px 4px;
1616 1614 }
1617 1615
1618 1616 #content div.box div.pagination-wh > :last-child {
1619 1617 border-radius: 0px 4px 4px 0px;
1620 1618 border-right: 1px solid #cfcfcf;
1621 1619 }
1622 1620
1623 1621 #content div.box div.pagination-wh a,
1624 1622 #content div.box div.pagination-wh span.pager_dotdot,
1625 1623 #content div.box div.pagination-wh span.yui-pg-previous,
1626 1624 #content div.box div.pagination-wh span.yui-pg-last,
1627 1625 #content div.box div.pagination-wh span.yui-pg-next,
1628 1626 #content div.box div.pagination-wh span.yui-pg-first {
1629 1627 height: 1%;
1630 1628 float: left;
1631 1629 background: #ebebeb url("../images/pager.png") repeat-x;
1632 1630 border-top: 1px solid #dedede;
1633 1631 border-left: 1px solid #cfcfcf;
1634 1632 border-bottom: 1px solid #c4c4c4;
1635 1633 color: #4A4A4A;
1636 1634 font-weight: 700;
1637 1635 padding: 6px;
1638 1636 }
1639 1637
1640 1638 #content div.box div.pagination-wh span.pager_curpage {
1641 1639 height: 1%;
1642 1640 float: left;
1643 1641 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1644 1642 border-top: 1px solid #ccc;
1645 1643 border-left: 1px solid #bebebe;
1646 1644 border-bottom: 1px solid #afafaf;
1647 1645 color: #515151;
1648 1646 font-weight: 700;
1649 1647 padding: 6px;
1650 1648 }
1651 1649
1652 1650 #content div.box div.pagination-wh a:hover, #content div.box div.pagination-wh a:active {
1653 1651 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1654 1652 border-top: 1px solid #ccc;
1655 1653 border-left: 1px solid #bebebe;
1656 1654 border-bottom: 1px solid #afafaf;
1657 1655 text-decoration: none;
1658 1656 }
1659 1657
1660 1658 #content div.box div.traffic div.legend {
1661 1659 clear: both;
1662 1660 overflow: hidden;
1663 1661 border-bottom: 1px solid #ddd;
1664 1662 margin: 0 0 10px;
1665 1663 padding: 0 0 10px;
1666 1664 }
1667 1665
1668 1666 #content div.box div.traffic div.legend h6 {
1669 1667 float: left;
1670 1668 border: none;
1671 1669 margin: 0;
1672 1670 padding: 0;
1673 1671 }
1674 1672
1675 1673 #content div.box div.traffic div.legend li {
1676 1674 list-style: none;
1677 1675 float: left;
1678 1676 font-size: 11px;
1679 1677 margin: 0;
1680 1678 padding: 0 8px 0 4px;
1681 1679 }
1682 1680
1683 1681 #content div.box div.traffic div.legend li.visits {
1684 1682 border-left: 12px solid #edc240;
1685 1683 }
1686 1684
1687 1685 #content div.box div.traffic div.legend li.pageviews {
1688 1686 border-left: 12px solid #afd8f8;
1689 1687 }
1690 1688
1691 1689 #content div.box div.traffic table {
1692 1690 width: auto;
1693 1691 }
1694 1692
1695 1693 #content div.box div.traffic table td {
1696 1694 background: transparent;
1697 1695 border: none;
1698 1696 padding: 2px 3px 3px;
1699 1697 }
1700 1698
1701 1699 #content div.box div.traffic table td.legendLabel {
1702 1700 padding: 0 3px 2px;
1703 1701 }
1704 1702
1705 1703 #content div.box #summary {
1706 1704 margin-right: 200px;
1707 1705 }
1708 1706
1709 1707 #summary-menu-stats {
1710 1708 float: left;
1711 1709 width: 180px;
1712 1710 position: absolute;
1713 1711 top: 0;
1714 1712 right: 0;
1715 1713 }
1716 1714
1717 1715 #summary-menu-stats ul {
1718 1716 margin: 0 10px;
1719 1717 display: block;
1720 1718 background-color: #f9f9f9;
1721 1719 border: 1px solid #d1d1d1;
1722 1720 border-radius: 4px;
1723 1721 }
1724 1722
1725 1723 #content #summary-menu-stats li {
1726 1724 border-top: 1px solid #d1d1d1;
1727 1725 padding: 0;
1728 1726 }
1729 1727
1730 1728 #content #summary-menu-stats li:hover {
1731 1729 background: #f0f0f0;
1732 1730 }
1733 1731
1734 1732 #content #summary-menu-stats li:first-child {
1735 1733 border-top: none;
1736 1734 }
1737 1735
1738 1736 #summary-menu-stats a.followers { background-image: url('../images/icons/heart.png')}
1739 1737 #summary-menu-stats a.forks { background-image: url('../images/icons/arrow_divide.png')}
1740 1738 #summary-menu-stats a.settings { background-image: url('../images/icons/cog_edit.png')}
1741 1739 #summary-menu-stats a.feed { background-image: url('../images/icons/rss_16.png')}
1742 1740 #summary-menu-stats a.repo-size { background-image: url('../images/icons/server.png')}
1743 1741
1744 1742 #summary-menu-stats a {
1745 1743 display: block;
1746 1744 padding: 12px 30px;
1747 1745 background-repeat: no-repeat;
1748 1746 background-position: 10px 50%;
1749 1747 padding-right: 10px;
1750 1748 }
1751 1749
1752 1750 #repo_size_2.loaded {
1753 1751 margin-left: 30px;
1754 1752 display: block;
1755 1753 padding-right: 10px;
1756 1754 padding-bottom: 7px;
1757 1755 }
1758 1756
1759 1757 #summary-menu-stats a:hover {
1760 1758 text-decoration: none;
1761 1759 }
1762 1760
1763 1761 #summary-menu-stats a span {
1764 1762 background-color: #DEDEDE;
1765 1763 color: #888 !important;
1766 1764 border-radius: 4px;
1767 1765 padding: 2px 4px;
1768 1766 font-size: 10px;
1769 1767 }
1770 1768
1771 1769 #summary .metatag {
1772 1770 display: inline-block;
1773 1771 padding: 3px 5px;
1774 1772 margin-bottom: 3px;
1775 1773 margin-right: 1px;
1776 1774 border-radius: 5px;
1777 1775 }
1778 1776
1779 1777 #content div.box #summary p {
1780 1778 margin-bottom: -5px;
1781 1779 width: 600px;
1782 1780 white-space: pre-wrap;
1783 1781 }
1784 1782
1785 1783 #content div.box #summary p:last-child {
1786 1784 margin-bottom: 9px;
1787 1785 }
1788 1786
1789 1787 #content div.box #summary p:first-of-type {
1790 1788 margin-top: 9px;
1791 1789 }
1792 1790
1793 1791 .metatag {
1794 1792 display: inline-block;
1795 1793 margin-right: 1px;
1796 1794 -webkit-border-radius: 4px 4px 4px 4px;
1797 1795 -khtml-border-radius: 4px 4px 4px 4px;
1798 1796 border-radius: 4px 4px 4px 4px;
1799 1797
1800 1798 border: solid 1px #9CF;
1801 1799 padding: 2px 3px 2px 3px !important;
1802 1800 background-color: #DEF;
1803 1801 }
1804 1802
1805 1803 .metatag[tag="dead"] {
1806 1804 background-color: #E44;
1807 1805 }
1808 1806
1809 1807 .metatag[tag="stale"] {
1810 1808 background-color: #EA4;
1811 1809 }
1812 1810
1813 1811 .metatag[tag="featured"] {
1814 1812 background-color: #AEA;
1815 1813 }
1816 1814
1817 1815 .metatag[tag="requires"] {
1818 1816 background-color: #9CF;
1819 1817 }
1820 1818
1821 1819 .metatag[tag="recommends"] {
1822 1820 background-color: #BDF;
1823 1821 }
1824 1822
1825 1823 .metatag[tag="lang"] {
1826 1824 background-color: #FAF474;
1827 1825 }
1828 1826
1829 1827 .metatag[tag="license"] {
1830 1828 border: solid 1px #9CF;
1831 1829 background-color: #DEF;
1832 1830 target-new: tab !important;
1833 1831 }
1834 1832 .metatag[tag="see"] {
1835 1833 border: solid 1px #CBD;
1836 1834 background-color: #EDF;
1837 1835 }
1838 1836
1839 1837 a.metatag[tag="license"]:hover {
1840 1838 background-color: #003367;
1841 1839 color: #FFF;
1842 1840 text-decoration: none;
1843 1841 }
1844 1842
1845 1843 #summary .desc {
1846 1844 white-space: pre;
1847 1845 width: 100%;
1848 1846 }
1849 1847
1850 1848 #summary .repo_name {
1851 1849 font-size: 1.6em;
1852 1850 font-weight: bold;
1853 1851 vertical-align: baseline;
1854 1852 clear: right
1855 1853 }
1856 1854
1857 1855 #footer {
1858 1856 clear: both;
1859 1857 overflow: hidden;
1860 1858 text-align: right;
1861 1859 margin: 0;
1862 1860 padding: 0 10px 4px;
1863 1861 margin: -10px 0 0;
1864 1862 }
1865 1863
1866 1864 #footer div#footer-inner {
1867 1865 background-color: #003B76;
1868 1866 background-repeat: repeat-x;
1869 1867 background-image: -khtml-gradient( linear, left top, left bottom, from(#003B76), to(#00376E));
1870 1868 background-image: -moz-linear-gradient(top, #003b76, #00376e);
1871 1869 background-image: -ms-linear-gradient( top, #003b76, #00376e);
1872 1870 background-image: -webkit-gradient( linear, left top, left bottom, color-stop( 0%, #003b76), color-stop( 100%, #00376e));
1873 1871 background-image: -webkit-linear-gradient( top, #003b76, #00376e));
1874 1872 background-image: -o-linear-gradient( top, #003b76, #00376e));
1875 1873 background-image: linear-gradient(to bottom, #003b76, #00376e);
1876 1874 filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr = '#003b76', endColorstr = '#00376e', GradientType = 0);
1877 1875 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
1878 1876 -webkit-border-radius: 4px 4px 4px 4px;
1879 1877 -khtml-border-radius: 4px 4px 4px 4px;
1880 1878 border-radius: 4px 4px 4px 4px;
1881 1879 }
1882 1880
1883 1881 #footer div#footer-inner p {
1884 1882 padding: 15px 25px 15px 0;
1885 1883 color: #FFF;
1886 1884 font-weight: 700;
1887 1885 }
1888 1886
1889 1887 #footer div#footer-inner .footer-link {
1890 1888 float: left;
1891 1889 padding-left: 10px;
1892 1890 }
1893 1891
1894 1892 #footer div#footer-inner .footer-link a, #footer div#footer-inner .footer-link-right a {
1895 1893 color: #FFF;
1896 1894 }
1897 1895
1898 1896 #login div.title {
1899 1897 clear: both;
1900 1898 overflow: hidden;
1901 1899 position: relative;
1902 1900 background-color: #003B76;
1903 1901 background-repeat: repeat-x;
1904 1902 background-image: -khtml-gradient( linear, left top, left bottom, from(#003B76), to(#00376E));
1905 1903 background-image: -moz-linear-gradient( top, #003b76, #00376e);
1906 1904 background-image: -ms-linear-gradient( top, #003b76, #00376e);
1907 1905 background-image: -webkit-gradient( linear, left top, left bottom, color-stop( 0%, #003b76), color-stop( 100%, #00376e));
1908 1906 background-image: -webkit-linear-gradient( top, #003b76, #00376e));
1909 1907 background-image: -o-linear-gradient( top, #003b76, #00376e));
1910 1908 background-image: linear-gradient(to bottom, #003b76, #00376e);
1911 1909 filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr = '#003b76', endColorstr = '#00376e', GradientType = 0);
1912 1910 margin: 0 auto;
1913 1911 padding: 0;
1914 1912 }
1915 1913
1916 1914 #login div.inner {
1917 1915 background: #FFF url("../images/login.png") no-repeat top left;
1918 1916 border-top: none;
1919 1917 border-bottom: none;
1920 1918 margin: 0 auto;
1921 1919 padding: 20px;
1922 1920 }
1923 1921
1924 1922 #login div.form div.fields div.field div.label {
1925 1923 width: 173px;
1926 1924 float: left;
1927 1925 text-align: right;
1928 1926 margin: 2px 10px 0 0;
1929 1927 padding: 5px 0 0 5px;
1930 1928 }
1931 1929
1932 1930 #login div.form div.fields div.field div.input input {
1933 1931 background: #FFF;
1934 1932 border-top: 1px solid #b3b3b3;
1935 1933 border-left: 1px solid #b3b3b3;
1936 1934 border-right: 1px solid #eaeaea;
1937 1935 border-bottom: 1px solid #eaeaea;
1938 1936 color: #000;
1939 1937 font-size: 11px;
1940 1938 margin: 0;
1941 1939 padding: 7px 7px 6px;
1942 1940 }
1943 1941
1944 1942 #login div.form div.fields div.buttons {
1945 1943 clear: both;
1946 1944 overflow: hidden;
1947 1945 border-top: 1px solid #DDD;
1948 1946 text-align: right;
1949 1947 margin: 0;
1950 1948 padding: 10px 0 0;
1951 1949 }
1952 1950
1953 1951 #login div.form div.links {
1954 1952 clear: both;
1955 1953 overflow: hidden;
1956 1954 margin: 10px 0 0;
1957 1955 padding: 0 0 2px;
1958 1956 }
1959 1957
1960 1958 .user-menu {
1961 1959 margin: 0px !important;
1962 1960 float: left;
1963 1961 }
1964 1962
1965 1963 .user-menu .container {
1966 1964 padding: 0px 4px 0px 4px;
1967 1965 margin: 0px 0px 0px 0px;
1968 1966 }
1969 1967
1970 1968 .user-menu .gravatar {
1971 1969 margin: 0px 0px 0px 0px;
1972 1970 cursor: pointer;
1973 1971 }
1974 1972 .user-menu .gravatar.enabled {
1975 1973 background-color: #FDF784 !important;
1976 1974 }
1977 1975 .user-menu .gravatar:hover {
1978 1976 background-color: #FDF784 !important;
1979 1977 }
1980 1978 #quick_login {
1981 1979 min-height: 110px;
1982 1980 padding: 4px;
1983 1981 position: absolute;
1984 1982 right: 0;
1985 1983 background-color: #003B76;
1986 1984 background-repeat: repeat-x;
1987 1985 background-image: -khtml-gradient(linear, left top, left bottom, from(#003B76), to(#00376E) );
1988 1986 background-image: -moz-linear-gradient(top, #003b76, #00376e);
1989 1987 background-image: -ms-linear-gradient(top, #003b76, #00376e);
1990 1988 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76), color-stop(100%, #00376e) );
1991 1989 background-image: -webkit-linear-gradient(top, #003b76, #00376e);
1992 1990 background-image: -o-linear-gradient(top, #003b76, #00376e);
1993 1991 background-image: linear-gradient(to bottom, #003b76, #00376e);
1994 1992 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76', endColorstr='#00376e', GradientType=0 );
1995 1993
1996 1994 z-index: 999;
1997 1995 -webkit-border-radius: 0px 0px 4px 4px;
1998 1996 -khtml-border-radius: 0px 0px 4px 4px;
1999 1997 border-radius: 0px 0px 4px 4px;
2000 1998 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
2001 1999
2002 2000 overflow: hidden;
2003 2001 }
2004 2002 #quick_login h4 {
2005 2003 color: #fff;
2006 2004 padding: 5px 0px 5px 14px;
2007 2005 }
2008 2006
2009 2007 #quick_login .password_forgoten {
2010 2008 padding-right: 0px;
2011 2009 padding-top: 0px;
2012 2010 text-align: left;
2013 2011 }
2014 2012
2015 2013 #quick_login .password_forgoten a {
2016 2014 font-size: 10px;
2017 2015 color: #fff;
2018 2016 padding: 0px !important;
2019 2017 line-height: 20px !important;
2020 2018 }
2021 2019
2022 2020 #quick_login .register {
2023 2021 padding-right: 10px;
2024 2022 padding-top: 5px;
2025 2023 text-align: left;
2026 2024 }
2027 2025
2028 2026 #quick_login .register a {
2029 2027 font-size: 10px;
2030 2028 color: #fff;
2031 2029 padding: 0px !important;
2032 2030 line-height: 20px !important;
2033 2031 }
2034 2032
2035 2033 #quick_login .submit {
2036 2034 margin: -20px 0 0 0px;
2037 2035 position: absolute;
2038 2036 right: 15px;
2039 2037 }
2040 2038
2041 2039 #quick_login .links_left {
2042 2040 float: left;
2043 2041 margin-right: 130px;
2044 2042 width: 170px;
2045 2043 }
2046 2044 #quick_login .links_right {
2047 2045
2048 2046 position: absolute;
2049 2047 right: 0;
2050 2048 }
2051 2049 #quick_login .full_name {
2052 2050 color: #FFFFFF;
2053 2051 font-weight: bold;
2054 2052 padding: 3px 3px 3px 6px;
2055 2053 }
2056 2054 #quick_login .big_gravatar {
2057 2055 padding: 4px 0px 0px 6px;
2058 2056 }
2059 2057 #quick_login .notifications {
2060 2058 padding: 2px 0px 0px 6px;
2061 2059 color: #FFFFFF;
2062 2060 font-weight: bold;
2063 2061 line-height: 10px !important;
2064 2062 }
2065 2063 #quick_login .notifications a,
2066 2064 #quick_login .unread a {
2067 2065 color: #FFFFFF;
2068 2066 display: block;
2069 2067 padding: 0px !important;
2070 2068 }
2071 2069 #quick_login .notifications a:hover,
2072 2070 #quick_login .unread a:hover {
2073 2071 background-color: inherit !important;
2074 2072 }
2075 2073 #quick_login .email, #quick_login .unread {
2076 2074 color: #FFFFFF;
2077 2075 padding: 3px 3px 3px 6px;
2078 2076 }
2079 2077 #quick_login .links .logout {
2080 2078 }
2081 2079
2082 2080 #quick_login div.form div.fields {
2083 2081 padding-top: 2px;
2084 2082 padding-left: 10px;
2085 2083 }
2086 2084
2087 2085 #quick_login div.form div.fields div.field {
2088 2086 padding: 5px;
2089 2087 }
2090 2088
2091 2089 #quick_login div.form div.fields div.field div.label label {
2092 2090 color: #fff;
2093 2091 padding-bottom: 3px;
2094 2092 }
2095 2093
2096 2094 #quick_login div.form div.fields div.field div.input input {
2097 2095 width: 236px;
2098 2096 background: #FFF;
2099 2097 border-top: 1px solid #b3b3b3;
2100 2098 border-left: 1px solid #b3b3b3;
2101 2099 border-right: 1px solid #eaeaea;
2102 2100 border-bottom: 1px solid #eaeaea;
2103 2101 color: #000;
2104 2102 font-size: 11px;
2105 2103 margin: 0;
2106 2104 padding: 5px 7px 4px;
2107 2105 }
2108 2106
2109 2107 #quick_login div.form div.fields div.buttons {
2110 2108 clear: both;
2111 2109 overflow: hidden;
2112 2110 text-align: right;
2113 2111 margin: 0;
2114 2112 padding: 5px 14px 0px 5px;
2115 2113 }
2116 2114
2117 2115 #quick_login div.form div.links {
2118 2116 clear: both;
2119 2117 overflow: hidden;
2120 2118 margin: 10px 0 0;
2121 2119 padding: 0 0 2px;
2122 2120 }
2123 2121
2124 2122 #quick_login ol.links {
2125 2123 display: block;
2126 2124 font-weight: bold;
2127 2125 list-style: none outside none;
2128 2126 text-align: right;
2129 2127 }
2130 2128 #quick_login ol.links li {
2131 2129 line-height: 27px;
2132 2130 margin: 0;
2133 2131 padding: 0;
2134 2132 color: #fff;
2135 2133 display: block;
2136 2134 float: none !important;
2137 2135 }
2138 2136
2139 2137 #quick_login ol.links li a {
2140 2138 color: #fff;
2141 2139 display: block;
2142 2140 padding: 2px;
2143 2141 }
2144 2142 #quick_login ol.links li a:HOVER {
2145 2143 background-color: inherit !important;
2146 2144 }
2147 2145
2148 2146 #register div.title {
2149 2147 clear: both;
2150 2148 overflow: hidden;
2151 2149 position: relative;
2152 2150 background-color: #003B76;
2153 2151 background-repeat: repeat-x;
2154 2152 background-image: -khtml-gradient(linear, left top, left bottom, from(#003B76), to(#00376E) );
2155 2153 background-image: -moz-linear-gradient(top, #003b76, #00376e);
2156 2154 background-image: -ms-linear-gradient(top, #003b76, #00376e);
2157 2155 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76), color-stop(100%, #00376e) );
2158 2156 background-image: -webkit-linear-gradient(top, #003b76, #00376e);
2159 2157 background-image: -o-linear-gradient(top, #003b76, #00376e);
2160 2158 background-image: linear-gradient(to bottom, #003b76, #00376e);
2161 2159 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
2162 2160 endColorstr='#00376e', GradientType=0 );
2163 2161 margin: 0 auto;
2164 2162 padding: 0;
2165 2163 }
2166 2164
2167 2165 #register div.inner {
2168 2166 background: #FFF;
2169 2167 border-top: none;
2170 2168 border-bottom: none;
2171 2169 margin: 0 auto;
2172 2170 padding: 20px;
2173 2171 }
2174 2172
2175 2173 #register div.form div.fields div.field div.label {
2176 2174 width: 135px;
2177 2175 float: left;
2178 2176 text-align: right;
2179 2177 margin: 2px 10px 0 0;
2180 2178 padding: 5px 0 0 5px;
2181 2179 }
2182 2180
2183 2181 #register div.form div.fields div.field div.input input {
2184 2182 width: 300px;
2185 2183 background: #FFF;
2186 2184 border-top: 1px solid #b3b3b3;
2187 2185 border-left: 1px solid #b3b3b3;
2188 2186 border-right: 1px solid #eaeaea;
2189 2187 border-bottom: 1px solid #eaeaea;
2190 2188 color: #000;
2191 2189 font-size: 11px;
2192 2190 margin: 0;
2193 2191 padding: 7px 7px 6px;
2194 2192 }
2195 2193
2196 2194 #register div.form div.fields div.buttons {
2197 2195 clear: both;
2198 2196 overflow: hidden;
2199 2197 border-top: 1px solid #DDD;
2200 2198 text-align: left;
2201 2199 margin: 0;
2202 2200 padding: 10px 0 0 150px;
2203 2201 }
2204 2202
2205 2203 #register div.form div.activation_msg {
2206 2204 padding-top: 4px;
2207 2205 padding-bottom: 4px;
2208 2206 }
2209 2207
2210 2208 #journal .journal_day {
2211 2209 font-size: 20px;
2212 2210 padding: 10px 0px;
2213 2211 border-bottom: 2px solid #DDD;
2214 2212 margin-left: 10px;
2215 2213 margin-right: 10px;
2216 2214 }
2217 2215
2218 2216 #journal .journal_container {
2219 2217 padding: 5px;
2220 2218 clear: both;
2221 2219 margin: 0px 5px 0px 10px;
2222 2220 }
2223 2221
2224 2222 #journal .journal_action_container {
2225 2223 padding-left: 38px;
2226 2224 }
2227 2225
2228 2226 #journal .journal_user {
2229 2227 color: #747474;
2230 2228 font-size: 14px;
2231 2229 font-weight: bold;
2232 2230 height: 30px;
2233 2231 }
2234 2232
2235 2233 #journal .journal_user.deleted {
2236 2234 color: #747474;
2237 2235 font-size: 14px;
2238 2236 font-weight: normal;
2239 2237 height: 30px;
2240 2238 font-style: italic;
2241 2239 }
2242 2240
2243 2241
2244 2242 #journal .journal_icon {
2245 2243 clear: both;
2246 2244 float: left;
2247 2245 padding-right: 4px;
2248 2246 padding-top: 3px;
2249 2247 }
2250 2248
2251 2249 #journal .journal_action {
2252 2250 padding-top: 4px;
2253 2251 min-height: 2px;
2254 2252 float: left
2255 2253 }
2256 2254
2257 2255 #journal .journal_action_params {
2258 2256 clear: left;
2259 2257 padding-left: 22px;
2260 2258 }
2261 2259
2262 2260 #journal .journal_repo {
2263 2261 float: left;
2264 2262 margin-left: 6px;
2265 2263 padding-top: 3px;
2266 2264 }
2267 2265
2268 2266 #journal .date {
2269 2267 clear: both;
2270 2268 color: #777777;
2271 2269 font-size: 11px;
2272 2270 padding-left: 22px;
2273 2271 }
2274 2272
2275 2273 #journal .journal_repo .journal_repo_name {
2276 2274 font-weight: bold;
2277 2275 font-size: 1.1em;
2278 2276 }
2279 2277
2280 2278 #journal .compare_view {
2281 2279 padding: 5px 0px 5px 0px;
2282 2280 width: 95px;
2283 2281 }
2284 2282
2285 2283 .journal_highlight {
2286 2284 font-weight: bold;
2287 2285 padding: 0 2px;
2288 2286 vertical-align: bottom;
2289 2287 }
2290 2288
2291 2289 .trending_language_tbl, .trending_language_tbl td {
2292 2290 border: 0 !important;
2293 2291 margin: 0 !important;
2294 2292 padding: 0 !important;
2295 2293 }
2296 2294
2297 2295 .trending_language_tbl, .trending_language_tbl tr {
2298 2296 border-spacing: 1px;
2299 2297 }
2300 2298
2301 2299 .trending_language {
2302 2300 background-color: #003367;
2303 2301 color: #FFF;
2304 2302 display: block;
2305 2303 min-width: 20px;
2306 2304 text-decoration: none;
2307 2305 height: 12px;
2308 2306 margin-bottom: 0px;
2309 2307 margin-left: 5px;
2310 2308 white-space: pre;
2311 2309 padding: 3px;
2312 2310 }
2313 2311
2314 2312 h3.files_location {
2315 2313 font-size: 1.8em;
2316 2314 font-weight: 700;
2317 2315 border-bottom: none !important;
2318 2316 margin: 10px 0 !important;
2319 2317 }
2320 2318
2321 2319 #files_data dl dt {
2322 2320 float: left;
2323 2321 width: 60px;
2324 2322 margin: 0 !important;
2325 2323 padding: 5px;
2326 2324 }
2327 2325
2328 2326 #files_data dl dd {
2329 2327 margin: 0 !important;
2330 2328 padding: 5px !important;
2331 2329 }
2332 2330
2333 2331 #files_data .codeblock #editor_container .error-message {
2334 2332 color: red;
2335 2333 padding: 10px 10px 10px 26px
2336 2334 }
2337 2335
2338 2336 .file_history {
2339 2337 padding-top: 10px;
2340 2338 font-size: 16px;
2341 2339 }
2342 2340 .file_author {
2343 2341 float: left;
2344 2342 }
2345 2343
2346 2344 .file_author .item {
2347 2345 float: left;
2348 2346 padding: 5px;
2349 2347 color: #888;
2350 2348 }
2351 2349
2352 2350 .tablerow0 {
2353 2351 background-color: #F8F8F8;
2354 2352 }
2355 2353
2356 2354 .tablerow1 {
2357 2355 background-color: #FFFFFF;
2358 2356 }
2359 2357
2360 2358 .changeset_id {
2361 2359 color: #666666;
2362 2360 margin-right: -3px;
2363 2361 }
2364 2362
2365 2363 .changeset_hash {
2366 2364 color: #000000;
2367 2365 }
2368 2366
2369 2367 #changeset_content {
2370 2368 border-left: 1px solid #CCC;
2371 2369 border-right: 1px solid #CCC;
2372 2370 border-bottom: 1px solid #CCC;
2373 2371 padding: 5px;
2374 2372 }
2375 2373
2376 2374 #changeset_compare_view_content {
2377 2375 border: 1px solid #CCC;
2378 2376 padding: 5px;
2379 2377 }
2380 2378
2381 2379 #changeset_content .container {
2382 2380 min-height: 100px;
2383 2381 font-size: 1.2em;
2384 2382 overflow: hidden;
2385 2383 }
2386 2384
2387 2385 #changeset_compare_view_content .compare_view_commits {
2388 2386 width: auto !important;
2389 2387 }
2390 2388
2391 2389 #changeset_compare_view_content .compare_view_commits td {
2392 2390 padding: 0px 0px 0px 12px !important;
2393 2391 }
2394 2392
2395 2393 #changeset_content .container .right {
2396 2394 float: right;
2397 2395 width: 20%;
2398 2396 text-align: right;
2399 2397 }
2400 2398
2401 2399 #changeset_content .container .message {
2402 2400 white-space: pre-wrap;
2403 2401 }
2404 2402 #changeset_content .container .message a:hover {
2405 2403 text-decoration: none;
2406 2404 }
2407 2405 .cs_files .cur_cs {
2408 2406 margin: 10px 2px;
2409 2407 font-weight: bold;
2410 2408 }
2411 2409
2412 2410 .cs_files .node {
2413 2411 float: left;
2414 2412 }
2415 2413
2416 2414 .cs_files .changes {
2417 2415 float: right;
2418 2416 color: #003367;
2419 2417 }
2420 2418
2421 2419 .cs_files .changes .added {
2422 2420 background-color: #BBFFBB;
2423 2421 float: left;
2424 2422 text-align: center;
2425 2423 font-size: 9px;
2426 2424 padding: 2px 0px 2px 0px;
2427 2425 }
2428 2426
2429 2427 .cs_files .changes .deleted {
2430 2428 background-color: #FF8888;
2431 2429 float: left;
2432 2430 text-align: center;
2433 2431 font-size: 9px;
2434 2432 padding: 2px 0px 2px 0px;
2435 2433 }
2436 2434 /*new binary
2437 2435 NEW_FILENODE = 1
2438 2436 DEL_FILENODE = 2
2439 2437 MOD_FILENODE = 3
2440 2438 RENAMED_FILENODE = 4
2441 2439 CHMOD_FILENODE = 5
2442 2440 BIN_FILENODE = 6
2443 2441 */
2444 2442 .cs_files .changes .bin {
2445 2443 background-color: #BBFFBB;
2446 2444 float: left;
2447 2445 text-align: center;
2448 2446 font-size: 9px;
2449 2447 padding: 2px 0px 2px 0px;
2450 2448 }
2451 2449 .cs_files .changes .bin.bin1 {
2452 2450 background-color: #BBFFBB;
2453 2451 }
2454 2452
2455 2453 /*deleted binary*/
2456 2454 .cs_files .changes .bin.bin2 {
2457 2455 background-color: #FF8888;
2458 2456 }
2459 2457
2460 2458 /*mod binary*/
2461 2459 .cs_files .changes .bin.bin3 {
2462 2460 background-color: #DDDDDD;
2463 2461 }
2464 2462
2465 2463 /*rename file*/
2466 2464 .cs_files .changes .bin.bin4 {
2467 2465 background-color: #6D99FF;
2468 2466 }
2469 2467
2470 2468 /*rename file*/
2471 2469 .cs_files .changes .bin.bin4 {
2472 2470 background-color: #6D99FF;
2473 2471 }
2474 2472
2475 2473 /*chmod file*/
2476 2474 .cs_files .changes .bin.bin5 {
2477 2475 background-color: #6D99FF;
2478 2476 }
2479 2477
2480 2478 .cs_files .cs_added, .cs_files .cs_A {
2481 2479 background: url("../images/icons/page_white_add.png") no-repeat scroll
2482 2480 3px;
2483 2481 height: 16px;
2484 2482 padding-left: 20px;
2485 2483 margin-top: 7px;
2486 2484 text-align: left;
2487 2485 }
2488 2486
2489 2487 .cs_files .cs_changed, .cs_files .cs_M {
2490 2488 background: url("../images/icons/page_white_edit.png") no-repeat scroll
2491 2489 3px;
2492 2490 height: 16px;
2493 2491 padding-left: 20px;
2494 2492 margin-top: 7px;
2495 2493 text-align: left;
2496 2494 }
2497 2495
2498 2496 .cs_files .cs_removed, .cs_files .cs_D {
2499 2497 background: url("../images/icons/page_white_delete.png") no-repeat
2500 2498 scroll 3px;
2501 2499 height: 16px;
2502 2500 padding-left: 20px;
2503 2501 margin-top: 7px;
2504 2502 text-align: left;
2505 2503 }
2506 2504
2507 2505 .table {
2508 2506 position: relative;
2509 2507 }
2510 2508
2511 2509 #graph {
2512 2510 position: relative;
2513 2511 overflow: hidden;
2514 2512 }
2515 2513
2516 2514 #graph_nodes {
2517 2515 position: absolute;
2518 2516 }
2519 2517
2520 2518 #graph_content,
2521 2519 #graph .info_box,
2522 2520 #graph .container_header {
2523 2521 margin-left: 100px;
2524 2522 }
2525 2523
2526 2524 #graph_content {
2527 2525 position: relative;
2528 2526 }
2529 2527
2530 2528 #graph .container_header {
2531 2529 padding: 10px;
2532 2530 height: 25px;
2533 2531 }
2534 2532
2535 2533 #graph_content #rev_range_container {
2536 2534 float: left;
2537 2535 margin: 0px 0px 0px 3px;
2538 2536 }
2539 2537
2540 2538 #graph_content #rev_range_clear {
2541 2539 float: left;
2542 2540 margin: 0px 0px 0px 3px;
2543 2541 }
2544 2542
2545 2543 #graph_content #changesets {
2546 2544 table-layout: fixed;
2547 2545 border-collapse: collapse;
2548 2546 border-left: none;
2549 2547 border-right: none;
2550 2548 border-color: #cdcdcd;
2551 2549 }
2552 2550
2553 2551 #graph_content #changesets td {
2554 2552 overflow: hidden;
2555 2553 text-overflow: ellipsis;
2556 2554 white-space: nowrap;
2557 2555 height: 31px;
2558 2556 border-color: #cdcdcd;
2559 2557 text-align: left;
2560 2558 }
2561 2559
2562 2560 #graph_content .container .checkbox {
2563 2561 width: 12px;
2564 2562 font-size: 0.85em;
2565 2563 }
2566 2564
2567 2565 #graph_content .container .status {
2568 2566 width: 14px;
2569 2567 font-size: 0.85em;
2570 2568 }
2571 2569
2572 2570 #graph_content .container .author {
2573 2571 width: 105px;
2574 2572 }
2575 2573
2576 2574 #graph_content .container .hash {
2577 2575 width: 100px;
2578 2576 font-size: 0.85em;
2579 2577 }
2580 2578
2581 2579 #graph_content #changesets .container .date {
2582 2580 width: 76px;
2583 2581 color: #666;
2584 2582 font-size: 10px;
2585 2583 }
2586 2584
2587 2585 #graph_content #changesets .container .right {
2588 2586 width: 120px;
2589 2587 padding-right: 0px;
2590 2588 overflow: visible;
2591 2589 position: relative;
2592 2590 }
2593 2591
2594 2592 #graph_content .container .mid {
2595 2593 padding: 0;
2596 2594 }
2597 2595
2598 2596 #graph_content .log-container {
2599 2597 position: relative;
2600 2598 }
2601 2599
2602 2600 #graph_content .container .changeset_range {
2603 2601 float: left;
2604 2602 margin: 6px 3px;
2605 2603 }
2606 2604
2607 2605 #graph_content .container .author img {
2608 2606 vertical-align: middle;
2609 2607 }
2610 2608
2611 2609 #graph_content .container .author .user {
2612 2610 color: #444444;
2613 2611 }
2614 2612
2615 2613 #graph_content .container .mid .message {
2616 2614 white-space: pre-wrap;
2617 2615 padding: 0;
2618 2616 overflow: hidden;
2619 2617 height: 1.1em;
2620 2618 }
2621 2619
2622 2620 #graph_content .container .extra-container {
2623 2621 display: block;
2624 2622 position: absolute;
2625 2623 top: -15px;
2626 2624 right: 0;
2627 2625 padding-left: 5px;
2628 2626 background: #FFFFFF;
2629 2627 height: 41px;
2630 2628 }
2631 2629
2632 2630 #graph_content .comments-container,
2633 2631 #shortlog_data .comments-container,
2634 2632 #graph_content .logtags {
2635 2633 display: block;
2636 2634 float: left;
2637 2635 overflow: hidden;
2638 2636 padding: 0;
2639 2637 margin: 0;
2640 2638 }
2641 2639
2642 2640 #graph_content .comments-container {
2643 2641 margin: 0.8em 0;
2644 2642 margin-right: 0.5em;
2645 2643 }
2646 2644
2647 2645 #graph_content .tagcontainer {
2648 2646 width: 80px;
2649 2647 position: relative;
2650 2648 float: right;
2651 2649 height: 100%;
2652 2650 top: 7px;
2653 2651 margin-left: 0.5em;
2654 2652 }
2655 2653
2656 2654 #graph_content .logtags {
2657 2655 min-width: 80px;
2658 2656 height: 1.1em;
2659 2657 position: absolute;
2660 2658 left: 0px;
2661 2659 width: auto;
2662 2660 top: 0px;
2663 2661 }
2664 2662
2665 2663 #graph_content .logtags.tags {
2666 2664 top: 14px;
2667 2665 }
2668 2666
2669 2667 #graph_content .logtags:hover {
2670 2668 overflow: visible;
2671 2669 position: absolute;
2672 2670 width: auto;
2673 2671 right: 0;
2674 2672 left: initial;
2675 2673 }
2676 2674
2677 2675 #graph_content .logtags .booktag,
2678 2676 #graph_content .logtags .tagtag {
2679 2677 float: left;
2680 2678 line-height: 1em;
2681 2679 margin-bottom: 1px;
2682 2680 margin-right: 1px;
2683 2681 padding: 1px 3px;
2684 2682 font-size: 10px;
2685 2683 }
2686 2684
2687 2685 #graph_content .container .mid .message a:hover {
2688 2686 text-decoration: none;
2689 2687 }
2690 2688
2691 2689 .revision-link {
2692 2690 color: #3F6F9F;
2693 2691 font-weight: bold !important;
2694 2692 }
2695 2693
2696 2694 .issue-tracker-link {
2697 2695 color: #3F6F9F;
2698 2696 font-weight: bold !important;
2699 2697 }
2700 2698
2701 2699 .changeset-status-container {
2702 2700 padding-right: 5px;
2703 2701 margin-top: 1px;
2704 2702 float: right;
2705 2703 height: 14px;
2706 2704 }
2707 2705 .code-header .changeset-status-container {
2708 2706 float: left;
2709 2707 padding: 2px 0px 0px 2px;
2710 2708 }
2711 2709 .changeset-status-container .changeset-status-lbl {
2712 2710 float: left;
2713 2711 padding: 3px 4px 0px 0px
2714 2712 }
2715 2713 .code-header .changeset-status-container .changeset-status-lbl {
2716 2714 float: left;
2717 2715 padding: 0px 4px 0px 0px;
2718 2716 }
2719 2717 .changeset-status-container .changeset-status-ico {
2720 2718 float: left;
2721 2719 }
2722 2720 .code-header .changeset-status-container .changeset-status-ico, .container .changeset-status-ico {
2723 2721 float: left;
2724 2722 }
2725 2723
2726 2724 #graph_content .comments-cnt {
2727 2725 color: rgb(136, 136, 136);
2728 2726 padding: 5px 0;
2729 2727 }
2730 2728
2731 2729 #shortlog_data .comments-cnt {
2732 2730 color: rgb(136, 136, 136);
2733 2731 padding: 3px 0;
2734 2732 }
2735 2733
2736 2734 #graph_content .comments-cnt a,
2737 2735 #shortlog_data .comments-cnt a {
2738 2736 background-image: url('../images/icons/comments.png');
2739 2737 background-repeat: no-repeat;
2740 2738 background-position: 100% 50%;
2741 2739 padding: 5px 0;
2742 2740 padding-right: 20px;
2743 2741 }
2744 2742
2745 2743 .right .changes {
2746 2744 clear: both;
2747 2745 }
2748 2746
2749 2747 .right .changes .changed_total {
2750 2748 display: block;
2751 2749 float: right;
2752 2750 text-align: center;
2753 2751 min-width: 45px;
2754 2752 cursor: pointer;
2755 2753 color: #444444;
2756 2754 background: #FEA;
2757 2755 -webkit-border-radius: 0px 0px 0px 6px;
2758 2756 border-radius: 0px 0px 0px 6px;
2759 2757 padding: 1px;
2760 2758 }
2761 2759
2762 2760 .right .changes .added, .changed, .removed {
2763 2761 display: block;
2764 2762 padding: 1px;
2765 2763 color: #444444;
2766 2764 float: right;
2767 2765 text-align: center;
2768 2766 min-width: 15px;
2769 2767 }
2770 2768
2771 2769 .right .changes .added {
2772 2770 background: #CFC;
2773 2771 }
2774 2772
2775 2773 .right .changes .changed {
2776 2774 background: #FEA;
2777 2775 }
2778 2776
2779 2777 .right .changes .removed {
2780 2778 background: #FAA;
2781 2779 }
2782 2780
2783 2781 .right .merge {
2784 2782 padding: 1px 3px 1px 3px;
2785 2783 background-color: #fca062;
2786 2784 font-size: 10px;
2787 2785 color: #ffffff;
2788 2786 text-transform: uppercase;
2789 2787 white-space: nowrap;
2790 2788 -webkit-border-radius: 3px;
2791 2789 border-radius: 3px;
2792 2790 margin-right: 2px;
2793 2791 }
2794 2792
2795 2793 .right .parent {
2796 2794 color: #666666;
2797 2795 clear: both;
2798 2796 }
2799 2797 .right .logtags {
2800 2798 line-height: 2.2em;
2801 2799 }
2802 2800 .branchtag, .logtags .tagtag, .logtags .booktag {
2803 2801 margin: 0px 2px;
2804 2802 }
2805 2803
2806 2804 .branchtag,
2807 2805 .tagtag,
2808 2806 .booktag,
2809 2807 .spantag {
2810 2808 padding: 1px 3px 1px 3px;
2811 2809 font-size: 10px;
2812 2810 color: #336699;
2813 2811 white-space: nowrap;
2814 2812 -webkit-border-radius: 4px;
2815 2813 border-radius: 4px;
2816 2814 border: 1px solid #d9e8f8;
2817 2815 line-height: 1.5em;
2818 2816 }
2819 2817
2820 2818 #graph_content .branchtag,
2821 2819 #graph_content .tagtag,
2822 2820 #graph_content .booktag {
2823 2821 margin: 1.1em 0;
2824 2822 margin-right: 0.5em;
2825 2823 }
2826 2824
2827 2825 .branchtag,
2828 2826 .tagtag,
2829 2827 .booktag {
2830 2828 float: left;
2831 2829 }
2832 2830
2833 2831 .right .logtags .branchtag,
2834 2832 .right .logtags .tagtag,
2835 2833 .right .logtags .booktag,
2836 2834 .right .merge {
2837 2835 float: right;
2838 2836 line-height: 1em;
2839 2837 margin: 1px 1px !important;
2840 2838 display: block;
2841 2839 }
2842 2840
2843 2841 .booktag {
2844 2842 border-color: #46A546;
2845 2843 color: #46A546;
2846 2844 }
2847 2845
2848 2846 .tagtag {
2849 2847 border-color: #62cffc;
2850 2848 color: #62cffc;
2851 2849 }
2852 2850
2853 2851 .logtags .branchtag a:hover,
2854 2852 .logtags .branchtag a,
2855 2853 .branchtag a,
2856 2854 .branchtag a:hover {
2857 2855 text-decoration: none;
2858 2856 color: inherit;
2859 2857 }
2860 2858 .logtags .tagtag {
2861 2859 padding: 1px 3px 1px 3px;
2862 2860 background-color: #62cffc;
2863 2861 font-size: 10px;
2864 2862 color: #ffffff;
2865 2863 white-space: nowrap;
2866 2864 -webkit-border-radius: 3px;
2867 2865 border-radius: 3px;
2868 2866 }
2869 2867
2870 2868 .tagtag a,
2871 2869 .tagtag a:hover,
2872 2870 .logtags .tagtag a,
2873 2871 .logtags .tagtag a:hover {
2874 2872 text-decoration: none;
2875 2873 color: inherit;
2876 2874 }
2877 2875 .logbooks .booktag, .logbooks .booktag, .logtags .booktag, .logtags .booktag {
2878 2876 padding: 1px 3px 1px 3px;
2879 2877 background-color: #46A546;
2880 2878 font-size: 10px;
2881 2879 color: #ffffff;
2882 2880 white-space: nowrap;
2883 2881 -webkit-border-radius: 3px;
2884 2882 border-radius: 3px;
2885 2883 }
2886 2884 .logbooks .booktag, .logbooks .booktag a, .right .logtags .booktag, .logtags .booktag a {
2887 2885 color: #ffffff;
2888 2886 }
2889 2887
2890 2888 .logbooks .booktag, .logbooks .booktag a:hover,
2891 2889 .logtags .booktag, .logtags .booktag a:hover,
2892 2890 .booktag a,
2893 2891 .booktag a:hover {
2894 2892 text-decoration: none;
2895 2893 color: inherit;
2896 2894 }
2897 2895 div.browserblock {
2898 2896 overflow: hidden;
2899 2897 border: 1px solid #ccc;
2900 2898 background: #f8f8f8;
2901 2899 font-size: 100%;
2902 2900 line-height: 125%;
2903 2901 padding: 0;
2904 2902 -webkit-border-radius: 6px 6px 0px 0px;
2905 2903 border-radius: 6px 6px 0px 0px;
2906 2904 }
2907 2905
2908 2906 div.browserblock .browser-header {
2909 2907 background: #FFF;
2910 2908 padding: 10px 0px 15px 0px;
2911 2909 width: 100%;
2912 2910 }
2913 2911
2914 2912 div.browserblock .browser-nav {
2915 2913 float: left
2916 2914 }
2917 2915
2918 2916 div.browserblock .browser-branch {
2919 2917 float: left;
2920 2918 }
2921 2919
2922 2920 div.browserblock .browser-branch label {
2923 2921 color: #4A4A4A;
2924 2922 vertical-align: text-top;
2925 2923 }
2926 2924
2927 2925 div.browserblock .browser-header span {
2928 2926 margin-left: 5px;
2929 2927 font-weight: 700;
2930 2928 }
2931 2929
2932 2930 div.browserblock .browser-search {
2933 2931 clear: both;
2934 2932 padding: 8px 8px 0px 5px;
2935 2933 height: 20px;
2936 2934 }
2937 2935
2938 2936 div.browserblock #node_filter_box {
2939 2937 }
2940 2938
2941 2939 div.browserblock .search_activate {
2942 2940 float: left
2943 2941 }
2944 2942
2945 2943 div.browserblock .add_node {
2946 2944 float: left;
2947 2945 padding-left: 5px;
2948 2946 }
2949 2947
2950 2948 div.browserblock .search_activate a:hover, div.browserblock .add_node a:hover {
2951 2949 text-decoration: none !important;
2952 2950 }
2953 2951
2954 2952 div.browserblock .browser-body {
2955 2953 background: #EEE;
2956 2954 border-top: 1px solid #CCC;
2957 2955 }
2958 2956
2959 2957 table.code-browser {
2960 2958 border-collapse: collapse;
2961 2959 width: 100%;
2962 2960 }
2963 2961
2964 2962 table.code-browser tr {
2965 2963 margin: 3px;
2966 2964 }
2967 2965
2968 2966 table.code-browser thead th {
2969 2967 background-color: #EEE;
2970 2968 height: 20px;
2971 2969 font-size: 1.1em;
2972 2970 font-weight: 700;
2973 2971 text-align: left;
2974 2972 padding-left: 10px;
2975 2973 }
2976 2974
2977 2975 table.code-browser tbody td {
2978 2976 padding-left: 10px;
2979 2977 height: 20px;
2980 2978 }
2981 2979
2982 2980 table.code-browser .browser-file {
2983 2981 background: url("../images/icons/document_16.png") no-repeat scroll 3px;
2984 2982 height: 16px;
2985 2983 padding-left: 20px;
2986 2984 text-align: left;
2987 2985 }
2988 2986 .diffblock .changeset_header {
2989 2987 height: 16px;
2990 2988 }
2991 2989 .diffblock .changeset_file {
2992 2990 background: url("../images/icons/file.png") no-repeat scroll 3px;
2993 2991 text-align: left;
2994 2992 float: left;
2995 2993 padding: 2px 0px 2px 22px;
2996 2994 }
2997 2995 .diffblock .diff-menu-wrapper {
2998 2996 float: left;
2999 2997 }
3000 2998
3001 2999 .diffblock .diff-menu {
3002 3000 position: absolute;
3003 3001 background: none repeat scroll 0 0 #FFFFFF;
3004 3002 border-color: #003367 #666666 #666666;
3005 3003 border-right: 1px solid #666666;
3006 3004 border-style: solid solid solid;
3007 3005 border-width: 1px;
3008 3006 box-shadow: 2px 8px 4px rgba(0, 0, 0, 0.2);
3009 3007 margin-top: 5px;
3010 3008 margin-left: 1px;
3011 3009
3012 3010 }
3013 3011 .diffblock .diff-actions {
3014 3012 padding: 2px 0px 0px 2px;
3015 3013 float: left;
3016 3014 }
3017 3015 .diffblock .diff-menu ul li {
3018 3016 padding: 0px 0px 0px 0px !important;
3019 3017 }
3020 3018 .diffblock .diff-menu ul li a {
3021 3019 display: block;
3022 3020 padding: 3px 8px 3px 8px !important;
3023 3021 }
3024 3022 .diffblock .diff-menu ul li a:hover {
3025 3023 text-decoration: none;
3026 3024 background-color: #EEEEEE;
3027 3025 }
3028 3026 table.code-browser .browser-dir {
3029 3027 background: url("../images/icons/folder_16.png") no-repeat scroll 3px;
3030 3028 height: 16px;
3031 3029 padding-left: 20px;
3032 3030 text-align: left;
3033 3031 }
3034 3032
3035 3033 table.code-browser .submodule-dir {
3036 3034 background: url("../images/icons/disconnect.png") no-repeat scroll 3px;
3037 3035 height: 16px;
3038 3036 padding-left: 20px;
3039 3037 text-align: left;
3040 3038 }
3041 3039
3042 3040
3043 3041 .box .search {
3044 3042 clear: both;
3045 3043 overflow: hidden;
3046 3044 margin: 0;
3047 3045 padding: 0 20px 10px;
3048 3046 }
3049 3047
3050 3048 .box .search div.search_path {
3051 3049 background: none repeat scroll 0 0 #EEE;
3052 3050 border: 1px solid #CCC;
3053 3051 color: blue;
3054 3052 margin-bottom: 10px;
3055 3053 padding: 10px 0;
3056 3054 }
3057 3055
3058 3056 .box .search div.search_path div.link {
3059 3057 font-weight: 700;
3060 3058 margin-left: 25px;
3061 3059 }
3062 3060
3063 3061 .box .search div.search_path div.link a {
3064 3062 color: #003367;
3065 3063 cursor: pointer;
3066 3064 text-decoration: none;
3067 3065 }
3068 3066
3069 3067 #path_unlock {
3070 3068 color: red;
3071 3069 font-size: 1.2em;
3072 3070 padding-left: 4px;
3073 3071 }
3074 3072
3075 3073 .info_box span {
3076 3074 margin-left: 3px;
3077 3075 margin-right: 3px;
3078 3076 }
3079 3077
3080 3078 .info_box .rev {
3081 3079 color: #003367;
3082 3080 font-size: 1.6em;
3083 3081 font-weight: bold;
3084 3082 vertical-align: sub;
3085 3083 }
3086 3084
3087 3085 .info_box input#at_rev, .info_box input#size {
3088 3086 background: #FFF;
3089 3087 border-top: 1px solid #b3b3b3;
3090 3088 border-left: 1px solid #b3b3b3;
3091 3089 border-right: 1px solid #eaeaea;
3092 3090 border-bottom: 1px solid #eaeaea;
3093 3091 color: #000;
3094 3092 font-size: 12px;
3095 3093 margin: 0;
3096 3094 padding: 1px 5px 1px;
3097 3095 }
3098 3096
3099 3097 .info_box input#view {
3100 3098 text-align: center;
3101 3099 padding: 4px 3px 2px 2px;
3102 3100 }
3103 3101
3104 3102 .yui-overlay, .yui-panel-container {
3105 3103 visibility: hidden;
3106 3104 position: absolute;
3107 3105 z-index: 2;
3108 3106 }
3109 3107
3110 3108 #tip-box {
3111 3109 position: absolute;
3112 3110
3113 3111 background-color: #FFF;
3114 3112 border: 2px solid #003367;
3115 3113 font: 100% sans-serif;
3116 3114 width: auto;
3117 3115 opacity: 1;
3118 3116 padding: 8px;
3119 3117
3120 3118 white-space: pre-wrap;
3121 3119 -webkit-border-radius: 8px 8px 8px 8px;
3122 3120 -khtml-border-radius: 8px 8px 8px 8px;
3123 3121 border-radius: 8px 8px 8px 8px;
3124 3122 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
3125 3123 -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
3126 3124 z-index: 100000;
3127 3125 }
3128 3126
3129 3127 .hl-tip-box {
3130 3128 visibility: hidden;
3131 3129 position: absolute;
3132 3130 color: #666;
3133 3131 background-color: #FFF;
3134 3132 border: 2px solid #003367;
3135 3133 font: 100% sans-serif;
3136 3134 width: auto;
3137 3135 opacity: 1;
3138 3136 padding: 8px;
3139 3137 white-space: pre-wrap;
3140 3138 -webkit-border-radius: 8px 8px 8px 8px;
3141 3139 -khtml-border-radius: 8px 8px 8px 8px;
3142 3140 border-radius: 8px 8px 8px 8px;
3143 3141 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
3144 3142 }
3145 3143
3146 3144
3147 3145 .mentions-container {
3148 3146 width: 90% !important;
3149 3147 }
3150 3148 .mentions-container .yui-ac-content {
3151 3149 width: 100% !important;
3152 3150 }
3153 3151
3154 3152 .ac {
3155 3153 vertical-align: top;
3156 3154 }
3157 3155
3158 3156 .ac .yui-ac {
3159 3157 position: inherit;
3160 3158 font-size: 100%;
3161 3159 }
3162 3160
3163 3161 .ac .perm_ac {
3164 3162 width: 20em;
3165 3163 }
3166 3164
3167 3165 .ac .yui-ac-input {
3168 3166 width: 100%;
3169 3167 }
3170 3168
3171 3169 .ac .yui-ac-container {
3172 3170 position: absolute;
3173 3171 top: 1.6em;
3174 3172 width: auto;
3175 3173 }
3176 3174
3177 3175 .ac .yui-ac-content {
3178 3176 position: absolute;
3179 3177 border: 1px solid gray;
3180 3178 background: #fff;
3181 3179 z-index: 9050;
3182 3180 }
3183 3181
3184 3182 .ac .yui-ac-shadow {
3185 3183 position: absolute;
3186 3184 width: 100%;
3187 3185 background: #000;
3188 3186 opacity: .10;
3189 3187 filter: alpha(opacity = 10);
3190 3188 z-index: 9049;
3191 3189 margin: .3em;
3192 3190 }
3193 3191
3194 3192 .ac .yui-ac-content ul {
3195 3193 width: 100%;
3196 3194 margin: 0;
3197 3195 padding: 0;
3198 3196 z-index: 9050;
3199 3197 }
3200 3198
3201 3199 .ac .yui-ac-content li {
3202 3200 cursor: default;
3203 3201 white-space: nowrap;
3204 3202 margin: 0;
3205 3203 padding: 2px 5px;
3206 3204 height: 18px;
3207 3205 z-index: 9050;
3208 3206 display: block;
3209 3207 width: auto !important;
3210 3208 }
3211 3209
3212 3210 .ac .yui-ac-content li .ac-container-wrap {
3213 3211 width: auto;
3214 3212 }
3215 3213
3216 3214 .ac .yui-ac-content li.yui-ac-prehighlight {
3217 3215 background: #B3D4FF;
3218 3216 z-index: 9050;
3219 3217 }
3220 3218
3221 3219 .ac .yui-ac-content li.yui-ac-highlight {
3222 3220 background: #556CB5;
3223 3221 color: #FFF;
3224 3222 z-index: 9050;
3225 3223 }
3226 3224 .ac .yui-ac-bd {
3227 3225 z-index: 9050;
3228 3226 }
3229 3227
3230 3228 .reposize {
3231 3229 background: url("../images/icons/server.png") no-repeat scroll 3px;
3232 3230 height: 16px;
3233 3231 width: 20px;
3234 3232 cursor: pointer;
3235 3233 display: block;
3236 3234 float: right;
3237 3235 margin-top: 2px;
3238 3236 }
3239 3237
3240 3238 #repo_size {
3241 3239 display: block;
3242 3240 margin-top: 4px;
3243 3241 color: #666;
3244 3242 float: right;
3245 3243 }
3246 3244
3247 3245 .locking_locked {
3248 3246 background: #FFF url("../images/icons/block_16.png") no-repeat scroll 3px;
3249 3247 height: 16px;
3250 3248 width: 20px;
3251 3249 cursor: pointer;
3252 3250 display: block;
3253 3251 float: right;
3254 3252 margin-top: 2px;
3255 3253 }
3256 3254
3257 3255 .locking_unlocked {
3258 3256 background: #FFF url("../images/icons/accept.png") no-repeat scroll 3px;
3259 3257 height: 16px;
3260 3258 width: 20px;
3261 3259 cursor: pointer;
3262 3260 display: block;
3263 3261 float: right;
3264 3262 margin-top: 2px;
3265 3263 }
3266 3264
3267 3265 .currently_following {
3268 3266 padding-left: 10px;
3269 3267 padding-bottom: 5px;
3270 3268 }
3271 3269
3272 3270 .add_icon {
3273 3271 background: url("../images/icons/add.png") no-repeat scroll 3px;
3274 3272 padding-left: 20px;
3275 3273 padding-top: 0px;
3276 3274 text-align: left;
3277 3275 }
3278 3276
3279 3277 .accept_icon {
3280 3278 background: url("../images/icons/accept.png") no-repeat scroll 3px;
3281 3279 padding-left: 20px;
3282 3280 padding-top: 0px;
3283 3281 text-align: left;
3284 3282 }
3285 3283
3286 3284 .edit_icon {
3287 3285 background: url("../images/icons/application_form_edit.png") no-repeat scroll 3px;
3288 3286 padding-left: 20px;
3289 3287 padding-top: 0px;
3290 3288 text-align: left;
3291 3289 }
3292 3290
3293 3291 .delete_icon {
3294 3292 background: url("../images/icons/delete.png") no-repeat scroll 3px;
3295 3293 padding-left: 20px;
3296 3294 padding-top: 0px;
3297 3295 text-align: left;
3298 3296 }
3299 3297
3300 3298 .refresh_icon {
3301 3299 background: url("../images/icons/arrow_refresh.png") no-repeat scroll
3302 3300 3px;
3303 3301 padding-left: 20px;
3304 3302 padding-top: 0px;
3305 3303 text-align: left;
3306 3304 }
3307 3305
3308 3306 .pull_icon {
3309 3307 background: url("../images/icons/connect.png") no-repeat scroll 3px;
3310 3308 padding-left: 20px;
3311 3309 padding-top: 0px;
3312 3310 text-align: left;
3313 3311 }
3314 3312
3315 3313 .rss_icon {
3316 3314 background: url("../images/icons/rss_16.png") no-repeat scroll 3px;
3317 3315 padding-left: 20px;
3318 3316 padding-top: 4px;
3319 3317 text-align: left;
3320 3318 font-size: 8px
3321 3319 }
3322 3320
3323 3321 .atom_icon {
3324 3322 background: url("../images/icons/rss_16.png") no-repeat scroll 3px;
3325 3323 padding-left: 20px;
3326 3324 padding-top: 4px;
3327 3325 text-align: left;
3328 3326 font-size: 8px
3329 3327 }
3330 3328
3331 3329 .archive_icon {
3332 3330 background: url("../images/icons/compress.png") no-repeat scroll 3px;
3333 3331 padding-left: 20px;
3334 3332 text-align: left;
3335 3333 padding-top: 1px;
3336 3334 }
3337 3335
3338 3336 .start_following_icon {
3339 3337 background: url("../images/icons/heart_add.png") no-repeat scroll 3px;
3340 3338 padding-left: 20px;
3341 3339 text-align: left;
3342 3340 padding-top: 0px;
3343 3341 }
3344 3342
3345 3343 .stop_following_icon {
3346 3344 background: url("../images/icons/heart_delete.png") no-repeat scroll 3px;
3347 3345 padding-left: 20px;
3348 3346 text-align: left;
3349 3347 padding-top: 0px;
3350 3348 }
3351 3349
3352 3350 .action_button {
3353 3351 border: 0;
3354 3352 display: inline;
3355 3353 }
3356 3354
3357 3355 .action_button:hover {
3358 3356 border: 0;
3359 3357 text-decoration: underline;
3360 3358 cursor: pointer;
3361 3359 }
3362 3360
3363 3361 #switch_repos {
3364 3362 position: absolute;
3365 3363 height: 25px;
3366 3364 z-index: 1;
3367 3365 }
3368 3366
3369 3367 #switch_repos select {
3370 3368 min-width: 150px;
3371 3369 max-height: 250px;
3372 3370 z-index: 1;
3373 3371 }
3374 3372
3375 3373 .breadcrumbs {
3376 3374 border: medium none;
3377 3375 color: #FFF;
3378 3376 float: left;
3379 3377 font-weight: 700;
3380 3378 font-size: 14px;
3381 3379 margin: 0;
3382 3380 padding: 11px 0 11px 10px;
3383 3381 }
3384 3382
3385 3383 .breadcrumbs .hash {
3386 3384 text-transform: none;
3387 3385 color: #fff;
3388 3386 }
3389 3387
3390 3388 .breadcrumbs a {
3391 3389 color: #FFF;
3392 3390 }
3393 3391
3394 3392 .flash_msg {
3395 3393 }
3396 3394
3397 3395 .flash_msg ul {
3398 3396 }
3399 3397
3400 3398 .error_red {
3401 3399 color: red;
3402 3400 }
3403 3401
3404 3402 .error_msg {
3405 3403 background-color: #c43c35;
3406 3404 background-repeat: repeat-x;
3407 3405 background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35) );
3408 3406 background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
3409 3407 background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
3410 3408 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35) );
3411 3409 background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
3412 3410 background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
3413 3411 background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
3414 3412 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b',endColorstr='#c43c35', GradientType=0 );
3415 3413 border-color: #c43c35 #c43c35 #882a25;
3416 3414 }
3417 3415
3418 3416 .error_msg a {
3419 3417 text-decoration: underline;
3420 3418 }
3421 3419
3422 3420 .warning_msg {
3423 3421 color: #404040 !important;
3424 3422 background-color: #eedc94;
3425 3423 background-repeat: repeat-x;
3426 3424 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94) );
3427 3425 background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
3428 3426 background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
3429 3427 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94) );
3430 3428 background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
3431 3429 background-image: -o-linear-gradient(top, #fceec1, #eedc94);
3432 3430 background-image: linear-gradient(to bottom, #fceec1, #eedc94);
3433 3431 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0 );
3434 3432 border-color: #eedc94 #eedc94 #e4c652;
3435 3433 }
3436 3434
3437 3435 .warning_msg a {
3438 3436 text-decoration: underline;
3439 3437 }
3440 3438
3441 3439 .success_msg {
3442 3440 background-color: #57a957;
3443 3441 background-repeat: repeat-x !important;
3444 3442 background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957) );
3445 3443 background-image: -moz-linear-gradient(top, #62c462, #57a957);
3446 3444 background-image: -ms-linear-gradient(top, #62c462, #57a957);
3447 3445 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957) );
3448 3446 background-image: -webkit-linear-gradient(top, #62c462, #57a957);
3449 3447 background-image: -o-linear-gradient(top, #62c462, #57a957);
3450 3448 background-image: linear-gradient(to bottom, #62c462, #57a957);
3451 3449 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0 );
3452 3450 border-color: #57a957 #57a957 #3d773d;
3453 3451 }
3454 3452
3455 3453 .success_msg a {
3456 3454 text-decoration: underline;
3457 3455 color: #FFF !important;
3458 3456 }
3459 3457
3460 3458 .notice_msg {
3461 3459 background-color: #339bb9;
3462 3460 background-repeat: repeat-x;
3463 3461 background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9) );
3464 3462 background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
3465 3463 background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
3466 3464 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9) );
3467 3465 background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
3468 3466 background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
3469 3467 background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
3470 3468 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0 );
3471 3469 border-color: #339bb9 #339bb9 #22697d;
3472 3470 }
3473 3471
3474 3472 .notice_msg a {
3475 3473 text-decoration: underline;
3476 3474 }
3477 3475
3478 3476 .success_msg, .error_msg, .notice_msg, .warning_msg {
3479 3477 font-size: 12px;
3480 3478 font-weight: 700;
3481 3479 min-height: 14px;
3482 3480 line-height: 14px;
3483 3481 margin-bottom: 10px;
3484 3482 margin-top: 0;
3485 3483 display: block;
3486 3484 overflow: auto;
3487 3485 padding: 6px 10px 6px 10px;
3488 3486 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3489 3487 position: relative;
3490 3488 color: #FFF;
3491 3489 border-width: 1px;
3492 3490 border-style: solid;
3493 3491 -webkit-border-radius: 4px;
3494 3492 border-radius: 4px;
3495 3493 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
3496 3494 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
3497 3495 }
3498 3496
3499 3497 #msg_close {
3500 3498 background: transparent url("../images/cross_grey_small.png") no-repeat scroll 0 0;
3501 3499 cursor: pointer;
3502 3500 height: 16px;
3503 3501 position: absolute;
3504 3502 right: 5px;
3505 3503 top: 5px;
3506 3504 width: 16px;
3507 3505 }
3508 3506 div#legend_data {
3509 3507 padding-left: 10px;
3510 3508 }
3511 3509 div#legend_container table {
3512 3510 border: none !important;
3513 3511 }
3514 3512 div#legend_container table, div#legend_choices table {
3515 3513 width: auto !important;
3516 3514 }
3517 3515
3518 3516 table#permissions_manage {
3519 3517 width: 0 !important;
3520 3518 }
3521 3519
3522 3520 table#permissions_manage span.private_repo_msg {
3523 3521 font-size: 0.8em;
3524 3522 opacity: 0.6;
3525 3523 }
3526 3524
3527 3525 table#permissions_manage td.private_repo_msg {
3528 3526 font-size: 0.8em;
3529 3527 }
3530 3528
3531 3529 table#permissions_manage tr#add_perm_input td {
3532 3530 vertical-align: middle;
3533 3531 }
3534 3532
3535 3533 div.gravatar {
3536 3534 background-color: #FFF;
3537 3535 float: left;
3538 3536 margin-right: 0.7em;
3539 3537 padding: 1px 1px 1px 1px;
3540 3538 line-height: 0;
3541 3539 -webkit-border-radius: 3px;
3542 3540 -khtml-border-radius: 3px;
3543 3541 border-radius: 3px;
3544 3542 }
3545 3543
3546 3544 div.gravatar img {
3547 3545 -webkit-border-radius: 2px;
3548 3546 -khtml-border-radius: 2px;
3549 3547 border-radius: 2px;
3550 3548 }
3551 3549
3552 3550 #header, #content, #footer {
3553 3551 min-width: 978px;
3554 3552 }
3555 3553
3556 3554 #content {
3557 3555 clear: both;
3558 3556 padding: 10px 10px 14px 10px;
3559 3557 }
3560 3558
3561 3559 #content.hover {
3562 3560 padding: 55px 10px 14px 10px !important;
3563 3561 }
3564 3562
3565 3563 #content div.box div.title div.search {
3566 3564 border-left: 1px solid #316293;
3567 3565 }
3568 3566
3569 3567 #content div.box div.title div.search div.input input {
3570 3568 border: 1px solid #316293;
3571 3569 }
3572 3570
3573 3571 .ui-btn {
3574 3572 color: #515151;
3575 3573 background-color: #DADADA;
3576 3574 background-repeat: repeat-x;
3577 3575 background-image: -khtml-gradient(linear, left top, left bottom, from(#F4F4F4),to(#DADADA) );
3578 3576 background-image: -moz-linear-gradient(top, #F4F4F4, #DADADA);
3579 3577 background-image: -ms-linear-gradient(top, #F4F4F4, #DADADA);
3580 3578 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F4F4F4),color-stop(100%, #DADADA) );
3581 3579 background-image: -webkit-linear-gradient(top, #F4F4F4, #DADADA) );
3582 3580 background-image: -o-linear-gradient(top, #F4F4F4, #DADADA) );
3583 3581 background-image: linear-gradient(to bottom, #F4F4F4, #DADADA);
3584 3582 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F4F4F4', endColorstr='#DADADA', GradientType=0);
3585 3583
3586 3584 border-top: 1px solid #DDD;
3587 3585 border-left: 1px solid #c6c6c6;
3588 3586 border-right: 1px solid #DDD;
3589 3587 border-bottom: 1px solid #c6c6c6;
3590 3588 color: #515151;
3591 3589 outline: none;
3592 3590 margin: 0px 3px 3px 0px;
3593 3591 -webkit-border-radius: 4px 4px 4px 4px !important;
3594 3592 -khtml-border-radius: 4px 4px 4px 4px !important;
3595 3593 border-radius: 4px 4px 4px 4px !important;
3596 3594 cursor: pointer !important;
3597 3595 padding: 3px 3px 3px 3px;
3598 3596 background-position: 0 -100px;
3599 3597
3600 3598 }
3601 3599
3602 3600 .ui-btn.badge {
3603 3601 cursor: default !important;
3604 3602 }
3605 3603
3606 3604 .ui-btn.disabled {
3607 3605 color: #999;
3608 3606 }
3609 3607
3610 3608 .ui-btn.xsmall {
3611 3609 padding: 1px 2px 1px 1px;
3612 3610 }
3613 3611
3614 3612 .ui-btn.large {
3615 3613 padding: 6px 12px;
3616 3614 }
3617 3615
3618 3616 .ui-btn.clone {
3619 3617 padding: 5px 2px 6px 1px;
3620 3618 margin: 0px 0px 3px -4px;
3621 3619 -webkit-border-radius: 0px 4px 4px 0px !important;
3622 3620 -khtml-border-radius: 0px 4px 4px 0px !important;
3623 3621 border-radius: 0px 4px 4px 0px !important;
3624 3622 width: 100px;
3625 3623 text-align: center;
3626 3624 display: inline-block;
3627 3625 position: relative;
3628 3626 top: -2px;
3629 3627 }
3630 3628 .ui-btn:focus {
3631 3629 outline: none;
3632 3630 }
3633 3631 .ui-btn:hover {
3634 3632 background-position: 0 -100px;
3635 3633 text-decoration: none;
3636 3634 color: #515151;
3637 3635 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 0 3px #FFFFFF !important;
3638 3636 }
3639 3637 .ui-btn.badge:hover {
3640 3638 box-shadow: none !important;
3641 3639 }
3642 3640 .ui-btn.disabled:hover {
3643 3641 background-position: 0;
3644 3642 color: #999;
3645 3643 text-decoration: none;
3646 3644 box-shadow: none !important;
3647 3645 }
3648 3646
3649 3647 .ui-btn.red {
3650 3648 color: #fff;
3651 3649 background-color: #c43c35;
3652 3650 background-repeat: repeat-x;
3653 3651 background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
3654 3652 background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
3655 3653 background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
3656 3654 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
3657 3655 background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
3658 3656 background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
3659 3657 background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
3660 3658 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
3661 3659 border-color: #c43c35 #c43c35 #882a25;
3662 3660 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3663 3661 }
3664 3662
3665 3663
3666 3664 .ui-btn.blue {
3667 3665 color: #fff;
3668 3666 background-color: #339bb9;
3669 3667 background-repeat: repeat-x;
3670 3668 background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
3671 3669 background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
3672 3670 background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
3673 3671 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
3674 3672 background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
3675 3673 background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
3676 3674 background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
3677 3675 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
3678 3676 border-color: #339bb9 #339bb9 #22697d;
3679 3677 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3680 3678 }
3681 3679
3682 3680 .ui-btn.green {
3683 3681 color: #fff;
3684 3682 background-color: #57a957;
3685 3683 background-repeat: repeat-x;
3686 3684 background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
3687 3685 background-image: -moz-linear-gradient(top, #62c462, #57a957);
3688 3686 background-image: -ms-linear-gradient(top, #62c462, #57a957);
3689 3687 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
3690 3688 background-image: -webkit-linear-gradient(top, #62c462, #57a957);
3691 3689 background-image: -o-linear-gradient(top, #62c462, #57a957);
3692 3690 background-image: linear-gradient(to bottom, #62c462, #57a957);
3693 3691 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
3694 3692 border-color: #57a957 #57a957 #3d773d;
3695 3693 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3696 3694 }
3697 3695
3698 3696 .ui-btn.yellow {
3699 3697 color: #fff;
3700 3698 background-color: #faa732;
3701 3699 background-repeat: repeat-x;
3702 3700 background-image: -khtml-gradient(linear, left top, left bottom, from(#fbb450), to(#f89406));
3703 3701 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
3704 3702 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
3705 3703 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbb450), color-stop(100%, #f89406));
3706 3704 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
3707 3705 background-image: -o-linear-gradient(top, #fbb450, #f89406);
3708 3706 background-image: linear-gradient(to bottom, #fbb450, #f89406);
3709 3707 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
3710 3708 border-color: #f89406 #f89406 #ad6704;
3711 3709 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3712 3710 }
3713 3711
3714 3712 label.disabled {
3715 3713 color: #aaa;
3716 3714 }
3717 3715
3718 3716 .ui-btn.blue.hidden {
3719 3717 display: none;
3720 3718 }
3721 3719
3722 3720 .ui-btn.active {
3723 3721 font-weight: bold;
3724 3722 }
3725 3723
3726 3724 ins, div.options a:hover {
3727 3725 text-decoration: none;
3728 3726 }
3729 3727
3730 3728 img,
3731 3729 #header #header-inner #quick li a:hover span.normal,
3732 3730 #content div.box div.form div.fields div.field div.textarea table td table td a,
3733 3731 #clone_url,
3734 3732 #clone_url_id
3735 3733 {
3736 3734 border: none;
3737 3735 }
3738 3736
3739 3737 img.icon, .right .merge img {
3740 3738 vertical-align: bottom;
3741 3739 }
3742 3740
3743 3741 #header ul#logged-user, #content div.box div.title ul.links,
3744 3742 #content div.box div.message div.dismiss,
3745 3743 #content div.box div.traffic div.legend ul {
3746 3744 float: right;
3747 3745 margin: 0;
3748 3746 padding: 0;
3749 3747 }
3750 3748
3751 3749 #header #header-inner #home, #header #header-inner #logo,
3752 3750 #content div.box ul.left, #content div.box ol.left,
3753 3751 div#commit_history,
3754 3752 div#legend_data, div#legend_container, div#legend_choices {
3755 3753 float: left;
3756 3754 }
3757 3755
3758 3756 #header #header-inner #quick li #quick_login,
3759 3757 #header #header-inner #quick li:hover ul ul,
3760 3758 #header #header-inner #quick li:hover ul ul ul,
3761 3759 #header #header-inner #quick li:hover ul ul ul ul,
3762 3760 #content #left #menu ul.closed, #content #left #menu li ul.collapsed, .yui-tt-shadow {
3763 3761 display: none;
3764 3762 }
3765 3763
3766 3764 #header #header-inner #quick li:hover #quick_login,
3767 3765 #header #header-inner #quick li:hover ul, #header #header-inner #quick li li:hover ul, #header #header-inner #quick li li li:hover ul, #header #header-inner #quick li li li li:hover ul, #content #left #menu ul.opened, #content #left #menu li ul.expanded {
3768 3766 display: block;
3769 3767 }
3770 3768
3771 3769 #content div.graph {
3772 3770 padding: 0 10px 10px;
3773 3771 }
3774 3772
3775 3773 #content div.box div.title ul.links li a:hover,
3776 3774 #content div.box div.title ul.links li.ui-tabs-selected a {
3777 3775
3778 3776 background: #6388ad; /* Old browsers */
3779 3777 background: -moz-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* FF3.6+ */
3780 3778 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
3781 3779 background: -webkit-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* Chrome10+,Safari5.1+ */
3782 3780 background: -o-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* Opera 11.10+ */
3783 3781 background: -ms-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* IE10+ */
3784 3782 background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* W3C */
3785 3783 /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#88bfe8', endColorstr='#70b0e0',GradientType=0 ); /* IE6-9 */
3786 3784 }
3787 3785
3788 3786 #content div.box ol.lower-roman, #content div.box ol.upper-roman, #content div.box ol.lower-alpha, #content div.box ol.upper-alpha, #content div.box ol.decimal {
3789 3787 margin: 10px 24px 10px 44px;
3790 3788 }
3791 3789
3792 3790 #content div.box div.form, #content div.box div.table, #content div.box div.traffic {
3793 3791 position: relative;
3794 3792 clear: both;
3795 3793 margin: 0;
3796 3794 padding: 0 20px 10px;
3797 3795 }
3798 3796
3799 3797 #content div.box div.form div.fields, #login div.form, #login div.form div.fields, #register div.form, #register div.form div.fields {
3800 3798 clear: both;
3801 3799 overflow: hidden;
3802 3800 margin: 0;
3803 3801 padding: 0;
3804 3802 }
3805 3803
3806 3804 #content div.box div.form div.fields div.field div.label span, #login div.form div.fields div.field div.label span, #register div.form div.fields div.field div.label span {
3807 3805 height: 1%;
3808 3806 display: block;
3809 3807 color: #363636;
3810 3808 margin: 0;
3811 3809 padding: 2px 0 0;
3812 3810 }
3813 3811
3814 3812 #content div.box div.form div.fields div.field div.input input.error, #login div.form div.fields div.field div.input input.error, #register div.form div.fields div.field div.input input.error {
3815 3813 background: #FBE3E4;
3816 3814 border-top: 1px solid #e1b2b3;
3817 3815 border-left: 1px solid #e1b2b3;
3818 3816 border-right: 1px solid #FBC2C4;
3819 3817 border-bottom: 1px solid #FBC2C4;
3820 3818 }
3821 3819
3822 3820 #content div.box div.form div.fields div.field div.input input.success, #login div.form div.fields div.field div.input input.success, #register div.form div.fields div.field div.input input.success {
3823 3821 background: #E6EFC2;
3824 3822 border-top: 1px solid #cebb98;
3825 3823 border-left: 1px solid #cebb98;
3826 3824 border-right: 1px solid #c6d880;
3827 3825 border-bottom: 1px solid #c6d880;
3828 3826 }
3829 3827
3830 3828 #content div.box-left div.form div.fields div.field div.textarea, #content div.box-right div.form div.fields div.field div.textarea, #content div.box div.form div.fields div.field div.select select, #content div.box table th.selected input, #content div.box table td.selected input {
3831 3829 margin: 0;
3832 3830 }
3833 3831
3834 3832 #content div.box-left div.form div.fields div.field div.select, #content div.box-left div.form div.fields div.field div.checkboxes, #content div.box-left div.form div.fields div.field div.radios, #content div.box-right div.form div.fields div.field div.select, #content div.box-right div.form div.fields div.field div.checkboxes, #content div.box-right div.form div.fields div.field div.radios {
3835 3833 margin: 0 0 0 0px !important;
3836 3834 padding: 0;
3837 3835 }
3838 3836
3839 3837 #content div.box div.form div.fields div.field div.select, #content div.box div.form div.fields div.field div.checkboxes, #content div.box div.form div.fields div.field div.radios {
3840 3838 margin: 0 0 0 200px;
3841 3839 padding: 0;
3842 3840 }
3843 3841
3844 3842 #content div.box div.form div.fields div.field div.select a:hover, #content div.box div.form div.fields div.field div.select a.ui-selectmenu:hover, #content div.box div.action a:hover {
3845 3843 color: #000;
3846 3844 text-decoration: none;
3847 3845 }
3848 3846
3849 3847 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus, #content div.box div.action a.ui-selectmenu-focus {
3850 3848 border: 1px solid #666;
3851 3849 }
3852 3850
3853 3851 #content div.box div.form div.fields div.field div.checkboxes div.checkbox, #content div.box div.form div.fields div.field div.radios div.radio {
3854 3852 clear: both;
3855 3853 overflow: hidden;
3856 3854 margin: 0;
3857 3855 padding: 8px 0 2px;
3858 3856 }
3859 3857
3860 3858 #content div.box div.form div.fields div.field div.checkboxes div.checkbox input, #content div.box div.form div.fields div.field div.radios div.radio input {
3861 3859 float: left;
3862 3860 margin: 0;
3863 3861 }
3864 3862
3865 3863 #content div.box div.form div.fields div.field div.checkboxes div.checkbox label, #content div.box div.form div.fields div.field div.radios div.radio label {
3866 3864 height: 1%;
3867 3865 display: block;
3868 3866 float: left;
3869 3867 margin: 2px 0 0 4px;
3870 3868 }
3871 3869
3872 3870 div.form div.fields div.field div.button input,
3873 3871 #content div.box div.form div.fields div.buttons input
3874 3872 div.form div.fields div.buttons input,
3875 3873 #content div.box div.action div.button input {
3876 3874 font-size: 11px;
3877 3875 font-weight: 700;
3878 3876 margin: 0;
3879 3877 }
3880 3878
3881 3879 input.ui-button {
3882 3880 background: #e5e3e3 url("../images/button.png") repeat-x;
3883 3881 border-top: 1px solid #DDD;
3884 3882 border-left: 1px solid #c6c6c6;
3885 3883 border-right: 1px solid #DDD;
3886 3884 border-bottom: 1px solid #c6c6c6;
3887 3885 color: #515151 !important;
3888 3886 outline: none;
3889 3887 margin: 0;
3890 3888 padding: 6px 12px;
3891 3889 -webkit-border-radius: 4px 4px 4px 4px;
3892 3890 -khtml-border-radius: 4px 4px 4px 4px;
3893 3891 border-radius: 4px 4px 4px 4px;
3894 3892 box-shadow: 0 1px 0 #ececec;
3895 3893 cursor: pointer;
3896 3894 }
3897 3895
3898 3896 input.ui-button:hover {
3899 3897 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
3900 3898 border-top: 1px solid #ccc;
3901 3899 border-left: 1px solid #bebebe;
3902 3900 border-right: 1px solid #b1b1b1;
3903 3901 border-bottom: 1px solid #afafaf;
3904 3902 }
3905 3903
3906 3904 div.form div.fields div.field div.highlight, #content div.box div.form div.fields div.buttons div.highlight {
3907 3905 display: inline;
3908 3906 }
3909 3907
3910 3908 #content div.box div.form div.fields div.buttons, div.form div.fields div.buttons {
3911 3909 margin: 10px 0 0 200px;
3912 3910 padding: 0;
3913 3911 }
3914 3912
3915 3913 #content div.box-left div.form div.fields div.buttons, #content div.box-right div.form div.fields div.buttons, div.box-left div.form div.fields div.buttons, div.box-right div.form div.fields div.buttons {
3916 3914 margin: 10px 0 0;
3917 3915 }
3918 3916
3919 3917 #content div.box table td.user, #content div.box table td.address {
3920 3918 width: 10%;
3921 3919 text-align: center;
3922 3920 }
3923 3921
3924 3922 #content div.box div.action div.button, #login div.form div.fields div.field div.input div.link, #register div.form div.fields div.field div.input div.link {
3925 3923 text-align: right;
3926 3924 margin: 6px 0 0;
3927 3925 padding: 0;
3928 3926 }
3929 3927
3930 3928 #content div.box div.action div.button input.ui-state-hover, #login div.form div.fields div.buttons input.ui-state-hover, #register div.form div.fields div.buttons input.ui-state-hover {
3931 3929 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
3932 3930 border-top: 1px solid #ccc;
3933 3931 border-left: 1px solid #bebebe;
3934 3932 border-right: 1px solid #b1b1b1;
3935 3933 border-bottom: 1px solid #afafaf;
3936 3934 color: #515151;
3937 3935 margin: 0;
3938 3936 padding: 6px 12px;
3939 3937 }
3940 3938
3941 3939 #content div.box div.pagination div.results, #content div.box div.pagination-wh div.results {
3942 3940 text-align: left;
3943 3941 float: left;
3944 3942 margin: 0;
3945 3943 padding: 0;
3946 3944 }
3947 3945
3948 3946 #content div.box div.pagination div.results span, #content div.box div.pagination-wh div.results span {
3949 3947 height: 1%;
3950 3948 display: block;
3951 3949 float: left;
3952 3950 background: #ebebeb url("../images/pager.png") repeat-x;
3953 3951 border-top: 1px solid #dedede;
3954 3952 border-left: 1px solid #cfcfcf;
3955 3953 border-right: 1px solid #c4c4c4;
3956 3954 border-bottom: 1px solid #c4c4c4;
3957 3955 color: #4A4A4A;
3958 3956 font-weight: 700;
3959 3957 margin: 0;
3960 3958 padding: 6px 8px;
3961 3959 }
3962 3960
3963 3961 #content div.box div.pagination ul.pager li.disabled, #content div.box div.pagination-wh a.disabled {
3964 3962 color: #B4B4B4;
3965 3963 padding: 6px;
3966 3964 }
3967 3965
3968 3966 #login, #register {
3969 3967 width: 520px;
3970 3968 margin: 10% auto 0;
3971 3969 padding: 0;
3972 3970 }
3973 3971
3974 3972 #login div.color, #register div.color {
3975 3973 clear: both;
3976 3974 overflow: hidden;
3977 3975 background: #FFF;
3978 3976 margin: 10px auto 0;
3979 3977 padding: 3px 3px 3px 0;
3980 3978 }
3981 3979
3982 3980 #login div.color a, #register div.color a {
3983 3981 width: 20px;
3984 3982 height: 20px;
3985 3983 display: block;
3986 3984 float: left;
3987 3985 margin: 0 0 0 3px;
3988 3986 padding: 0;
3989 3987 }
3990 3988
3991 3989 #login div.title h5, #register div.title h5 {
3992 3990 color: #fff;
3993 3991 margin: 10px;
3994 3992 padding: 0;
3995 3993 }
3996 3994
3997 3995 #login div.form div.fields div.field, #register div.form div.fields div.field {
3998 3996 clear: both;
3999 3997 overflow: hidden;
4000 3998 margin: 0;
4001 3999 padding: 0 0 10px;
4002 4000 }
4003 4001
4004 4002 #login div.form div.fields div.field span.error-message, #register div.form div.fields div.field span.error-message {
4005 4003 height: 1%;
4006 4004 display: block;
4007 4005 color: red;
4008 4006 margin: 8px 0 0;
4009 4007 padding: 0;
4010 4008 max-width: 320px;
4011 4009 }
4012 4010
4013 4011 #login div.form div.fields div.field div.label label, #register div.form div.fields div.field div.label label {
4014 4012 color: #000;
4015 4013 font-weight: 700;
4016 4014 }
4017 4015
4018 4016 #login div.form div.fields div.field div.input, #register div.form div.fields div.field div.input {
4019 4017 float: left;
4020 4018 margin: 0;
4021 4019 padding: 0;
4022 4020 }
4023 4021
4024 4022 #login div.form div.fields div.field div.input input.large {
4025 4023 width: 250px;
4026 4024 }
4027 4025
4028 4026 #login div.form div.fields div.field div.checkbox, #register div.form div.fields div.field div.checkbox {
4029 4027 margin: 0 0 0 184px;
4030 4028 padding: 0;
4031 4029 }
4032 4030
4033 4031 #login div.form div.fields div.field div.checkbox label, #register div.form div.fields div.field div.checkbox label {
4034 4032 color: #565656;
4035 4033 font-weight: 700;
4036 4034 }
4037 4035
4038 4036 #login div.form div.fields div.buttons input, #register div.form div.fields div.buttons input {
4039 4037 color: #000;
4040 4038 font-size: 1em;
4041 4039 font-weight: 700;
4042 4040 margin: 0;
4043 4041 }
4044 4042
4045 4043 #changeset_content .container .wrapper, #graph_content .container .wrapper {
4046 4044 width: 600px;
4047 4045 }
4048 4046
4049 4047 #changeset_content .container .date, .ac .match {
4050 4048 font-weight: 700;
4051 4049 padding-top: 5px;
4052 4050 padding-bottom: 5px;
4053 4051 }
4054 4052
4055 4053 div#legend_container table td, div#legend_choices table td {
4056 4054 border: none !important;
4057 4055 height: 20px !important;
4058 4056 padding: 0 !important;
4059 4057 }
4060 4058
4061 4059 .q_filter_box {
4062 4060 -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset;
4063 4061 -webkit-border-radius: 4px;
4064 4062 border-radius: 4px;
4065 4063 border: 0 none;
4066 4064 margin-bottom: -4px;
4067 4065 margin-top: -4px;
4068 4066 padding-left: 3px;
4069 4067 }
4070 4068
4071 4069 #node_filter {
4072 4070 border: 0px solid #545454;
4073 4071 color: #AAAAAA;
4074 4072 padding-left: 3px;
4075 4073 }
4076 4074
4077 4075
4078 4076 .group_members_wrap {
4079 4077 min-height: 85px;
4080 4078 padding-left: 20px;
4081 4079 }
4082 4080
4083 4081 .group_members .group_member {
4084 4082 height: 30px;
4085 4083 padding: 0px 0px 0px 0px;
4086 4084 }
4087 4085
4088 4086 .reviewers_member {
4089 4087 height: 15px;
4090 4088 padding: 0px 0px 0px 10px;
4091 4089 }
4092 4090
4093 4091 .emails_wrap {
4094 4092 padding: 0px 20px;
4095 4093 }
4096 4094
4097 4095 .emails_wrap .email_entry {
4098 4096 height: 30px;
4099 4097 padding: 0px 0px 0px 10px;
4100 4098 }
4101 4099 .emails_wrap .email_entry .email {
4102 4100 float: left
4103 4101 }
4104 4102 .emails_wrap .email_entry .email_action {
4105 4103 float: left
4106 4104 }
4107 4105
4108 4106 .ips_wrap {
4109 4107 padding: 0px 20px;
4110 4108 }
4111 4109
4112 4110 .ips_wrap .ip_entry {
4113 4111 height: 30px;
4114 4112 padding: 0px 0px 0px 10px;
4115 4113 }
4116 4114 .ips_wrap .ip_entry .ip {
4117 4115 float: left
4118 4116 }
4119 4117 .ips_wrap .ip_entry .ip_action {
4120 4118 float: left
4121 4119 }
4122 4120
4123 4121
4124 4122 /*README STYLE*/
4125 4123
4126 4124 div.readme {
4127 4125 padding: 0px;
4128 4126 }
4129 4127
4130 4128 div.readme h2 {
4131 4129 font-weight: normal;
4132 4130 }
4133 4131
4134 4132 div.readme .readme_box {
4135 4133 background-color: #fafafa;
4136 4134 }
4137 4135
4138 4136 div.readme .readme_box {
4139 4137 clear: both;
4140 4138 overflow: hidden;
4141 4139 margin: 0;
4142 4140 padding: 0 20px 10px;
4143 4141 }
4144 4142
4145 4143 div.readme .readme_box h1, div.readme .readme_box h2, div.readme .readme_box h3, div.readme .readme_box h4, div.readme .readme_box h5, div.readme .readme_box h6 {
4146 4144 border-bottom: 0 !important;
4147 4145 margin: 0 !important;
4148 4146 padding: 0 !important;
4149 4147 line-height: 1.5em !important;
4150 4148 }
4151 4149
4152 4150
4153 4151 div.readme .readme_box h1:first-child {
4154 4152 padding-top: .25em !important;
4155 4153 }
4156 4154
4157 4155 div.readme .readme_box h2, div.readme .readme_box h3 {
4158 4156 margin: 1em 0 !important;
4159 4157 }
4160 4158
4161 4159 div.readme .readme_box h2 {
4162 4160 margin-top: 1.5em !important;
4163 4161 border-top: 4px solid #e0e0e0 !important;
4164 4162 padding-top: .5em !important;
4165 4163 }
4166 4164
4167 4165 div.readme .readme_box p {
4168 4166 color: black !important;
4169 4167 margin: 1em 0 !important;
4170 4168 line-height: 1.5em !important;
4171 4169 }
4172 4170
4173 4171 div.readme .readme_box ul {
4174 4172 list-style: disc !important;
4175 4173 margin: 1em 0 1em 2em !important;
4176 4174 }
4177 4175
4178 4176 div.readme .readme_box ol {
4179 4177 list-style: decimal;
4180 4178 margin: 1em 0 1em 2em !important;
4181 4179 }
4182 4180
4183 4181 div.readme .readme_box pre, code {
4184 4182 font: 12px "Bitstream Vera Sans Mono","Courier",monospace;
4185 4183 }
4186 4184
4187 4185 div.readme .readme_box code {
4188 4186 font-size: 12px !important;
4189 4187 background-color: ghostWhite !important;
4190 4188 color: #444 !important;
4191 4189 padding: 0 .2em !important;
4192 4190 border: 1px solid #dedede !important;
4193 4191 }
4194 4192
4195 4193 div.readme .readme_box pre code {
4196 4194 padding: 0 !important;
4197 4195 font-size: 12px !important;
4198 4196 background-color: #eee !important;
4199 4197 border: none !important;
4200 4198 }
4201 4199
4202 4200 div.readme .readme_box pre {
4203 4201 margin: 1em 0;
4204 4202 font-size: 12px;
4205 4203 background-color: #eee;
4206 4204 border: 1px solid #ddd;
4207 4205 padding: 5px;
4208 4206 color: #444;
4209 4207 overflow: auto;
4210 4208 -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset;
4211 4209 -webkit-border-radius: 3px;
4212 4210 border-radius: 3px;
4213 4211 }
4214 4212
4215 4213 div.readme .readme_box table {
4216 4214 display: table;
4217 4215 border-collapse: separate;
4218 4216 border-spacing: 2px;
4219 4217 border-color: gray;
4220 4218 width: auto !important;
4221 4219 }
4222 4220
4223 4221
4224 4222 /** RST STYLE **/
4225 4223
4226 4224
4227 4225 div.rst-block {
4228 4226 padding: 0px;
4229 4227 }
4230 4228
4231 4229 div.rst-block h2 {
4232 4230 font-weight: normal;
4233 4231 }
4234 4232
4235 4233 div.rst-block {
4236 4234 background-color: #fafafa;
4237 4235 }
4238 4236
4239 4237 div.rst-block {
4240 4238 clear: both;
4241 4239 overflow: hidden;
4242 4240 margin: 0;
4243 4241 padding: 0 20px 10px;
4244 4242 }
4245 4243
4246 4244 div.rst-block h1, div.rst-block h2, div.rst-block h3, div.rst-block h4, div.rst-block h5, div.rst-block h6 {
4247 4245 border-bottom: 0 !important;
4248 4246 margin: 0 !important;
4249 4247 padding: 0 !important;
4250 4248 line-height: 1.5em !important;
4251 4249 }
4252 4250
4253 4251
4254 4252 div.rst-block h1:first-child {
4255 4253 padding-top: .25em !important;
4256 4254 }
4257 4255
4258 4256 div.rst-block h2, div.rst-block h3 {
4259 4257 margin: 1em 0 !important;
4260 4258 }
4261 4259
4262 4260 div.rst-block h2 {
4263 4261 margin-top: 1.5em !important;
4264 4262 border-top: 4px solid #e0e0e0 !important;
4265 4263 padding-top: .5em !important;
4266 4264 }
4267 4265
4268 4266 div.rst-block p {
4269 4267 color: black !important;
4270 4268 margin: 1em 0 !important;
4271 4269 line-height: 1.5em !important;
4272 4270 }
4273 4271
4274 4272 div.rst-block ul {
4275 4273 list-style: disc !important;
4276 4274 margin: 1em 0 1em 2em !important;
4277 4275 }
4278 4276
4279 4277 div.rst-block ol {
4280 4278 list-style: decimal;
4281 4279 margin: 1em 0 1em 2em !important;
4282 4280 }
4283 4281
4284 4282 div.rst-block pre, code {
4285 4283 font: 12px "Bitstream Vera Sans Mono","Courier",monospace;
4286 4284 }
4287 4285
4288 4286 div.rst-block code {
4289 4287 font-size: 12px !important;
4290 4288 background-color: ghostWhite !important;
4291 4289 color: #444 !important;
4292 4290 padding: 0 .2em !important;
4293 4291 border: 1px solid #dedede !important;
4294 4292 }
4295 4293
4296 4294 div.rst-block pre code {
4297 4295 padding: 0 !important;
4298 4296 font-size: 12px !important;
4299 4297 background-color: #eee !important;
4300 4298 border: none !important;
4301 4299 }
4302 4300
4303 4301 div.rst-block pre {
4304 4302 margin: 1em 0;
4305 4303 font-size: 12px;
4306 4304 background-color: #eee;
4307 4305 border: 1px solid #ddd;
4308 4306 padding: 5px;
4309 4307 color: #444;
4310 4308 overflow: auto;
4311 4309 -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset;
4312 4310 -webkit-border-radius: 3px;
4313 4311 border-radius: 3px;
4314 4312 }
4315 4313
4316 4314
4317 4315 /** comment main **/
4318 4316 .comments {
4319 4317 padding: 10px 20px;
4320 4318 }
4321 4319
4322 4320 .comments .comment {
4323 4321 border: 1px solid #ddd;
4324 4322 margin-top: 10px;
4325 4323 -webkit-border-radius: 4px;
4326 4324 border-radius: 4px;
4327 4325 }
4328 4326
4329 4327 .comments .comment .meta {
4330 4328 background: #f8f8f8;
4331 4329 padding: 4px;
4332 4330 border-bottom: 1px solid #ddd;
4333 4331 height: 18px;
4334 4332 }
4335 4333
4336 4334 .comments .comment .meta img {
4337 4335 vertical-align: middle;
4338 4336 }
4339 4337
4340 4338 .comments .comment .meta .user {
4341 4339 font-weight: bold;
4342 4340 float: left;
4343 4341 padding: 4px 2px 2px 2px;
4344 4342 }
4345 4343
4346 4344 .comments .comment .meta .date {
4347 4345 float: left;
4348 4346 padding: 4px 4px 0px 4px;
4349 4347 }
4350 4348
4351 4349 .comments .comment .text {
4352 4350 background-color: #FAFAFA;
4353 4351 }
4354 4352 .comment .text div.rst-block p {
4355 4353 margin: 0.5em 0px !important;
4356 4354 }
4357 4355
4358 4356 .comments .comments-number {
4359 4357 padding: 0px 0px 10px 0px;
4360 4358 font-weight: bold;
4361 4359 color: #666;
4362 4360 font-size: 16px;
4363 4361 }
4364 4362
4365 4363 /** comment form **/
4366 4364
4367 4365 .status-block {
4368 4366 min-height: 80px;
4369 4367 clear: both
4370 4368 }
4371 4369
4372 4370
4373 4371 div.comment-form {
4374 4372 margin-top: 20px;
4375 4373 }
4376 4374
4377 4375 .comment-form strong {
4378 4376 display: block;
4379 4377 margin-bottom: 15px;
4380 4378 }
4381 4379
4382 4380 .comment-form textarea {
4383 4381 width: 100%;
4384 4382 height: 100px;
4385 4383 font-family: 'Monaco', 'Courier', 'Courier New', monospace;
4386 4384 }
4387 4385
4388 4386 form.comment-form {
4389 4387 margin-top: 10px;
4390 4388 margin-left: 10px;
4391 4389 }
4392 4390
4393 4391 .comment-inline-form .comment-block-ta,
4394 4392 .comment-form .comment-block-ta {
4395 4393 border: 1px solid #ccc;
4396 4394 border-radius: 3px;
4397 4395 box-sizing: border-box;
4398 4396 }
4399 4397
4400 4398 .comment-form-submit {
4401 4399 margin-top: 5px;
4402 4400 margin-left: 525px;
4403 4401 }
4404 4402
4405 4403 .file-comments {
4406 4404 display: none;
4407 4405 }
4408 4406
4409 4407 .comment-form .comment {
4410 4408 margin-left: 10px;
4411 4409 }
4412 4410
4413 4411 .comment-form .comment-help {
4414 4412 padding: 5px 5px 5px 5px;
4415 4413 color: #666;
4416 4414 }
4417 4415 .comment-form .comment-help .preview-btn,
4418 4416 .comment-form .comment-help .edit-btn {
4419 4417 float: right;
4420 4418 margin: -6px 0px 0px 0px;
4421 4419 }
4422 4420
4423 4421 .comment-form .preview-box.unloaded,
4424 4422 .comment-inline-form .preview-box.unloaded {
4425 4423 height: 50px;
4426 4424 text-align: center;
4427 4425 padding: 20px;
4428 4426 background-color: #fafafa;
4429 4427 }
4430 4428
4431 4429 .comment-form .comment-button {
4432 4430 padding-top: 5px;
4433 4431 }
4434 4432
4435 4433 .add-another-button {
4436 4434 margin-left: 10px;
4437 4435 margin-top: 10px;
4438 4436 margin-bottom: 10px;
4439 4437 }
4440 4438
4441 4439 .comment .buttons {
4442 4440 float: right;
4443 4441 margin: -1px 0px 0px 0px;
4444 4442 }
4445 4443
4446 4444
4447 4445 .show-inline-comments {
4448 4446 position: relative;
4449 4447 top: 1px
4450 4448 }
4451 4449
4452 4450 /** comment inline form **/
4453 4451 .comment-inline-form {
4454 4452 margin: 4px;
4455 4453 }
4456 4454 .comment-inline-form .overlay {
4457 4455 display: none;
4458 4456 }
4459 4457 .comment-inline-form .overlay.submitting {
4460 4458 display: block;
4461 4459 background: none repeat scroll 0 0 white;
4462 4460 font-size: 16px;
4463 4461 opacity: 0.5;
4464 4462 position: absolute;
4465 4463 text-align: center;
4466 4464 vertical-align: top;
4467 4465
4468 4466 }
4469 4467 .comment-inline-form .overlay.submitting .overlay-text {
4470 4468 width: 100%;
4471 4469 margin-top: 5%;
4472 4470 }
4473 4471
4474 4472 .comment-inline-form .clearfix,
4475 4473 .comment-form .clearfix {
4476 4474 background: #EEE;
4477 4475 -webkit-border-radius: 4px;
4478 4476 border-radius: 4px;
4479 4477 padding: 5px;
4480 4478 margin: 0px;
4481 4479 }
4482 4480
4483 4481 div.comment-inline-form {
4484 4482 padding: 4px 0px 6px 0px;
4485 4483 }
4486 4484
4487 4485 .comment-inline-form strong {
4488 4486 display: block;
4489 4487 margin-bottom: 15px;
4490 4488 }
4491 4489
4492 4490 .comment-inline-form textarea {
4493 4491 width: 100%;
4494 4492 height: 100px;
4495 4493 font-family: 'Monaco', 'Courier', 'Courier New', monospace;
4496 4494 }
4497 4495
4498 4496 form.comment-inline-form {
4499 4497 margin-top: 10px;
4500 4498 margin-left: 10px;
4501 4499 }
4502 4500
4503 4501 .comment-inline-form-submit {
4504 4502 margin-top: 5px;
4505 4503 margin-left: 525px;
4506 4504 }
4507 4505
4508 4506 .file-comments {
4509 4507 display: none;
4510 4508 }
4511 4509
4512 4510 .comment-inline-form .comment {
4513 4511 margin-left: 10px;
4514 4512 }
4515 4513
4516 4514 .comment-inline-form .comment-help {
4517 4515 padding: 5px 5px 5px 5px;
4518 4516 color: #666;
4519 4517 }
4520 4518
4521 4519 .comment-inline-form .comment-help .preview-btn,
4522 4520 .comment-inline-form .comment-help .edit-btn {
4523 4521 float: right;
4524 4522 margin: -6px 0px 0px 0px;
4525 4523 }
4526 4524
4527 4525 .comment-inline-form .comment-button {
4528 4526 padding-top: 5px;
4529 4527 }
4530 4528
4531 4529 /** comment inline **/
4532 4530 .inline-comments {
4533 4531 padding: 10px 20px;
4534 4532 }
4535 4533
4536 4534 .inline-comments div.rst-block {
4537 4535 clear: both;
4538 4536 overflow: hidden;
4539 4537 margin: 0;
4540 4538 padding: 0 20px 0px;
4541 4539 }
4542 4540 .inline-comments .comment {
4543 4541 border: 1px solid #ddd;
4544 4542 -webkit-border-radius: 4px;
4545 4543 border-radius: 4px;
4546 4544 margin: 3px 3px 5px 5px;
4547 4545 background-color: #FAFAFA;
4548 4546 }
4549 4547 .inline-comments .add-comment {
4550 4548 padding: 2px 4px 8px 5px;
4551 4549 }
4552 4550
4553 4551 .inline-comments .comment-wrapp {
4554 4552 padding: 1px;
4555 4553 }
4556 4554 .inline-comments .comment .meta {
4557 4555 background: #f8f8f8;
4558 4556 padding: 4px;
4559 4557 border-bottom: 1px solid #ddd;
4560 4558 height: 20px;
4561 4559 }
4562 4560
4563 4561 .inline-comments .comment .meta img {
4564 4562 vertical-align: middle;
4565 4563 }
4566 4564
4567 4565 .inline-comments .comment .meta .user {
4568 4566 font-weight: bold;
4569 4567 float: left;
4570 4568 padding: 3px;
4571 4569 }
4572 4570
4573 4571 .inline-comments .comment .meta .date {
4574 4572 float: left;
4575 4573 padding: 3px;
4576 4574 }
4577 4575
4578 4576 .inline-comments .comment .text {
4579 4577 background-color: #FAFAFA;
4580 4578 }
4581 4579
4582 4580 .inline-comments .comments-number {
4583 4581 padding: 0px 0px 10px 0px;
4584 4582 font-weight: bold;
4585 4583 color: #666;
4586 4584 font-size: 16px;
4587 4585 }
4588 4586 .inline-comments-button .add-comment {
4589 4587 margin: 2px 0px 8px 5px !important
4590 4588 }
4591 4589
4592 4590 .notification-paginator {
4593 4591 padding: 0px 0px 4px 16px;
4594 4592 }
4595 4593
4596 4594 #context-pages .pull-request span,
4597 4595 .menu_link_notifications {
4598 4596 padding: 4px 4px !important;
4599 4597 text-align: center;
4600 4598 color: #888 !important;
4601 4599 background-color: #DEDEDE !important;
4602 4600 border-radius: 4px !important;
4603 4601 -webkit-border-radius: 4px !important;
4604 4602 }
4605 4603
4606 4604 #context-pages .forks span,
4607 4605 .menu_link_notifications {
4608 4606 padding: 4px 4px !important;
4609 4607 text-align: center;
4610 4608 color: #888 !important;
4611 4609 background-color: #DEDEDE !important;
4612 4610 border-radius: 4px !important;
4613 4611 -webkit-border-radius: 4px !important;
4614 4612 }
4615 4613
4616 4614
4617 4615 .notification-header {
4618 4616 padding-top: 6px;
4619 4617 }
4620 4618 .notification-header .desc {
4621 4619 font-size: 16px;
4622 4620 height: 24px;
4623 4621 float: left
4624 4622 }
4625 4623 .notification-list .container.unread {
4626 4624 background: none repeat scroll 0 0 rgba(255, 255, 180, 0.6);
4627 4625 }
4628 4626 .notification-header .gravatar {
4629 4627 background: none repeat scroll 0 0 transparent;
4630 4628 padding: 0px 0px 0px 8px;
4631 4629 }
4632 4630 .notification-list .container .notification-header .desc {
4633 4631 font-weight: bold;
4634 4632 font-size: 17px;
4635 4633 }
4636 4634 .notification-table {
4637 4635 border: 1px solid #ccc;
4638 4636 -webkit-border-radius: 6px 6px 6px 6px;
4639 4637 border-radius: 6px 6px 6px 6px;
4640 4638 clear: both;
4641 4639 margin: 0px 20px 0px 20px;
4642 4640 }
4643 4641 .notification-header .delete-notifications {
4644 4642 float: right;
4645 4643 padding-top: 8px;
4646 4644 cursor: pointer;
4647 4645 }
4648 4646 .notification-header .read-notifications {
4649 4647 float: right;
4650 4648 padding-top: 8px;
4651 4649 cursor: pointer;
4652 4650 }
4653 4651 .notification-subject {
4654 4652 clear: both;
4655 4653 border-bottom: 1px solid #eee;
4656 4654 padding: 5px 0px 5px 38px;
4657 4655 }
4658 4656
4659 4657 .notification-body {
4660 4658 clear: both;
4661 4659 margin: 34px 2px 2px 8px
4662 4660 }
4663 4661
4664 4662 /****
4665 4663 PULL REQUESTS
4666 4664 *****/
4667 4665 .pullrequests_section_head {
4668 4666 padding: 10px 10px 10px 0px;
4669 4667 font-size: 16px;
4670 4668 font-weight: bold;
4671 4669 }
4672 4670
4673 4671 div.pr-details-title.closed,
4674 4672 #pullrequests_container li.closed a
4675 4673 {
4676 4674 color: #555;
4677 4675 background: #eee;
4678 4676 }
4679 4677
4680 4678 div.pr-title {
4681 4679 font-size: 1.6em;
4682 4680 }
4683 4681 div.pr-details-title {
4684 4682 font-size: 1.6em;
4685 4683 margin: 0px 20px 0px 20px;
4686 4684 padding: 5px 0px 5px 10px;
4687 4685 }
4688 4686
4689 4687 div.pr {
4690 4688 border-bottom: 1px solid #DDD;
4691 4689 margin: 0px 20px;
4692 4690 padding: 10px 4px;
4693 4691 }
4694 4692 div.pr-desc {
4695 4693 margin: 0px 20px;
4696 4694 }
4697 4695 div.pr-closed {
4698 4696 background-color: #eee;
4699 4697 }
4700 4698
4701 4699 span.pr-closed-tag {
4702 4700 margin-bottom: 1px;
4703 4701 margin-right: 1px;
4704 4702 padding: 1px 3px;
4705 4703 font-size: 10px;
4706 4704 padding: 1px 3px 1px 3px;
4707 4705 font-size: 10px;
4708 4706 color: #336699;
4709 4707 white-space: nowrap;
4710 4708 -webkit-border-radius: 4px;
4711 4709 border-radius: 4px;
4712 4710 border: 1px solid #d9e8f8;
4713 4711 line-height: 1.5em;
4714 4712 }
4715 4713
4716 4714 /****
4717 4715 PERMS
4718 4716 *****/
4719 4717 #perms .perms_section_head {
4720 4718 padding: 10px 10px 10px 0px;
4721 4719 font-size: 16px;
4722 4720 font-weight: bold;
4723 4721 }
4724 4722
4725 4723 #perms .perm_tag {
4726 4724 padding: 1px 3px 1px 3px;
4727 4725 font-size: 10px;
4728 4726 font-weight: bold;
4729 4727 text-transform: uppercase;
4730 4728 white-space: nowrap;
4731 4729 -webkit-border-radius: 3px;
4732 4730 border-radius: 3px;
4733 4731 }
4734 4732
4735 4733 #perms .perm_tag.admin {
4736 4734 background-color: #B94A48;
4737 4735 color: #ffffff;
4738 4736 }
4739 4737
4740 4738 #perms .perm_tag.write {
4741 4739 background-color: #DB7525;
4742 4740 color: #ffffff;
4743 4741 }
4744 4742
4745 4743 #perms .perm_tag.read {
4746 4744 background-color: #468847;
4747 4745 color: #ffffff;
4748 4746 }
4749 4747
4750 4748 #perms .perm_tag.none {
4751 4749 background-color: #bfbfbf;
4752 4750 color: #ffffff;
4753 4751 }
4754 4752
4755 4753 .perm-gravatar {
4756 4754 vertical-align: middle;
4757 4755 padding: 2px;
4758 4756 }
4759 4757 .perm-gravatar-ac {
4760 4758 vertical-align: middle;
4761 4759 padding: 2px;
4762 4760 width: 14px;
4763 4761 height: 14px;
4764 4762 }
4765 4763
4766 4764 /*****************************************************************************
4767 4765 DIFFS CSS
4768 4766 ******************************************************************************/
4769 4767 .diff-collapse {
4770 4768 text-align: center;
4771 4769 margin-bottom: -15px;
4772 4770 }
4773 4771 .diff-collapse-button {
4774 4772 cursor: pointer;
4775 4773 color: #666;
4776 4774 font-size: 16px;
4777 4775 }
4778 4776 .diff-container {
4779 4777
4780 4778 }
4781 4779
4782 4780 .diff-container.hidden {
4783 4781 display: none;
4784 4782 overflow: hidden;
4785 4783 }
4786 4784
4787 4785
4788 4786 div.diffblock {
4789 4787 overflow: auto;
4790 4788 padding: 0px;
4791 4789 border: 1px solid #ccc;
4792 4790 background: #f8f8f8;
4793 4791 font-size: 100%;
4794 4792 line-height: 100%;
4795 4793 /* new */
4796 4794 line-height: 125%;
4797 4795 -webkit-border-radius: 6px 6px 0px 0px;
4798 4796 border-radius: 6px 6px 0px 0px;
4799 4797 }
4800 4798 div.diffblock.margined {
4801 4799 margin: 0px 20px 0px 20px;
4802 4800 }
4803 4801 div.diffblock .code-header {
4804 4802 border-bottom: 1px solid #CCCCCC;
4805 4803 background: #EEEEEE;
4806 4804 padding: 10px 0 10px 0;
4807 4805 height: 14px;
4808 4806 }
4809 4807
4810 4808 div.diffblock .code-header.banner {
4811 4809 border-bottom: 1px solid #CCCCCC;
4812 4810 background: #EEEEEE;
4813 4811 height: 14px;
4814 4812 margin: 0px 95px 0px 95px;
4815 4813 padding: 3px 3px 11px 3px;
4816 4814 }
4817 4815
4818 4816 div.diffblock .code-header-title {
4819 4817 padding: 0px 0px 10px 5px !important;
4820 4818 margin: 0 !important;
4821 4819 }
4822 4820 div.diffblock .code-header .hash {
4823 4821 float: left;
4824 4822 padding: 2px 0 0 2px;
4825 4823 }
4826 4824 div.diffblock .code-header .date {
4827 4825 float: left;
4828 4826 text-transform: uppercase;
4829 4827 padding: 2px 0px 0px 2px;
4830 4828 }
4831 4829 div.diffblock .code-header div {
4832 4830 margin-left: 4px;
4833 4831 font-weight: bold;
4834 4832 font-size: 14px;
4835 4833 }
4836 4834
4837 4835 div.diffblock .parents {
4838 4836 float: left;
4839 4837 height: 26px;
4840 4838 width: 100px;
4841 4839 font-size: 10px;
4842 4840 font-weight: 400;
4843 4841 vertical-align: middle;
4844 4842 padding: 0px 2px 2px 2px;
4845 4843 background-color: #eeeeee;
4846 4844 border-bottom: 1px solid #CCCCCC;
4847 4845 }
4848 4846
4849 4847 div.diffblock .children {
4850 4848 float: right;
4851 4849 height: 26px;
4852 4850 width: 100px;
4853 4851 font-size: 10px;
4854 4852 font-weight: 400;
4855 4853 vertical-align: middle;
4856 4854 text-align: right;
4857 4855 padding: 0px 2px 2px 2px;
4858 4856 background-color: #eeeeee;
4859 4857 border-bottom: 1px solid #CCCCCC;
4860 4858 }
4861 4859
4862 4860 div.diffblock .code-body {
4863 4861 background: #FFFFFF;
4864 4862 }
4865 4863 div.diffblock pre.raw {
4866 4864 background: #FFFFFF;
4867 4865 color: #000000;
4868 4866 }
4869 4867 table.code-difftable {
4870 4868 border-collapse: collapse;
4871 4869 width: 99%;
4872 4870 border-radius: 0px !important;
4873 4871 }
4874 4872 table.code-difftable td {
4875 4873 padding: 0 !important;
4876 4874 background: none !important;
4877 4875 border: 0 !important;
4878 4876 vertical-align: baseline !important
4879 4877 }
4880 4878 table.code-difftable .context {
4881 4879 background: none repeat scroll 0 0 #DDE7EF;
4882 4880 }
4883 4881 table.code-difftable .add {
4884 4882 background: none repeat scroll 0 0 #DDFFDD;
4885 4883 }
4886 4884 table.code-difftable .add ins {
4887 4885 background: none repeat scroll 0 0 #AAFFAA;
4888 4886 text-decoration: none;
4889 4887 }
4890 4888 table.code-difftable .del {
4891 4889 background: none repeat scroll 0 0 #FFDDDD;
4892 4890 }
4893 4891 table.code-difftable .del del {
4894 4892 background: none repeat scroll 0 0 #FFAAAA;
4895 4893 text-decoration: none;
4896 4894 }
4897 4895
4898 4896 /** LINE NUMBERS **/
4899 4897 table.code-difftable .lineno {
4900 4898
4901 4899 padding-left: 2px;
4902 4900 padding-right: 2px;
4903 4901 text-align: right;
4904 4902 width: 32px;
4905 4903 -moz-user-select: none;
4906 4904 -webkit-user-select: none;
4907 4905 border-right: 1px solid #CCC !important;
4908 4906 border-left: 0px solid #CCC !important;
4909 4907 border-top: 0px solid #CCC !important;
4910 4908 border-bottom: none !important;
4911 4909 vertical-align: middle !important;
4912 4910
4913 4911 }
4914 4912 table.code-difftable .lineno.new {
4915 4913 }
4916 4914 table.code-difftable .lineno.old {
4917 4915 }
4918 4916 table.code-difftable .lineno a {
4919 4917 color: #747474 !important;
4920 4918 font: 11px "Bitstream Vera Sans Mono",Monaco,"Courier New",Courier,monospace !important;
4921 4919 letter-spacing: -1px;
4922 4920 text-align: right;
4923 4921 padding-right: 2px;
4924 4922 cursor: pointer;
4925 4923 display: block;
4926 4924 width: 32px;
4927 4925 }
4928 4926
4929 4927 table.code-difftable .lineno-inline {
4930 4928 background: none repeat scroll 0 0 #FFF !important;
4931 4929 padding-left: 2px;
4932 4930 padding-right: 2px;
4933 4931 text-align: right;
4934 4932 width: 30px;
4935 4933 -moz-user-select: none;
4936 4934 -webkit-user-select: none;
4937 4935 }
4938 4936
4939 4937 /** CODE **/
4940 4938 table.code-difftable .code {
4941 4939 display: block;
4942 4940 width: 100%;
4943 4941 }
4944 4942 table.code-difftable .code td {
4945 4943 margin: 0;
4946 4944 padding: 0;
4947 4945 }
4948 4946 table.code-difftable .code pre {
4949 4947 margin: 0;
4950 4948 padding: 0;
4951 4949 height: 17px;
4952 4950 line-height: 17px;
4953 4951 }
4954 4952
4955 4953
4956 4954 .diffblock.margined.comm .line .code:hover {
4957 4955 background-color: #FFFFCC !important;
4958 4956 cursor: pointer !important;
4959 4957 background-image: url("../images/icons/comment_add.png") !important;
4960 4958 background-repeat: no-repeat !important;
4961 4959 background-position: right !important;
4962 4960 background-position: 0% 50% !important;
4963 4961 }
4964 4962 .diffblock.margined.comm .line .code.no-comment:hover {
4965 4963 background-image: none !important;
4966 4964 cursor: auto !important;
4967 4965 background-color: inherit !important;
4968 4966 }
4969 4967
4970 4968 div.comment:target>.comment-wrapp {
4971 4969 border: solid 2px #ee0 !important;
4972 4970 }
4973 4971
4974 4972 .lineno:target a {
4975 4973 border: solid 2px #ee0 !important;
4976 4974 margin: -2px;
4977 4975 }
4978 4976
4979 4977 #help_kb {
4980 4978 display: none;
4981 4979 }
General Comments 0
You need to be logged in to leave comments. Login now