OLD | NEW |
---|---|
1 .visible-transition { | 1 .visible-transition { |
2 transition-delay: 0s; | 2 transition-delay: 0s; |
3 transition-duration: 1s; | 3 transition-duration: 1s; |
4 transition-property: all; | 4 transition-property: all; |
5 transition-timing-function: ease; | 5 transition-timing-function: ease; |
6 } | 6 } |
7 | 7 |
8 .collapse-pane { | 8 .collapse-pane { |
9 background: #A0A0A0; | 9 background: #A0A0A0; |
10 bottom: 0; | 10 bottom: 0; |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
275 #disassembly-collapse { | 275 #disassembly-collapse { |
276 right: 0; | 276 right: 0; |
277 } | 277 } |
278 | 278 |
279 #source-collapse { | 279 #source-collapse { |
280 left: 0; | 280 left: 0; |
281 } | 281 } |
282 | 282 |
283 #graph-toolbox-anchor { | 283 #graph-toolbox-anchor { |
284 height: 0px; | 284 height: 0px; |
285 | |
danno
2016/07/28 08:45:42
nit: Please remove this stray change.
| |
285 } | 286 } |
286 | 287 |
287 #graph-toolbox { | 288 #graph-toolbox { |
288 position: relative; | 289 position: relative; |
289 top: 1em; | 290 top: 1em; |
290 left: 0.7em; | 291 left: 0.7em; |
291 border: 2px solid #eee8d5; | 292 border: 2px solid #eee8d5; |
292 border-radius: 5px; | 293 border-radius: 5px; |
293 padding: 0.7em; | 294 padding: 0.7em; |
294 z-index: 5; | 295 z-index: 5; |
295 background: rgba(100%, 100%, 100%, 0.7); | 296 background: rgba(100%, 100%, 100%, 0.7); |
296 } | 297 } |
297 | 298 |
299 #disassembly-toolbox { | |
300 position: relative; | |
301 top: 1em; | |
302 left: 0.7em; | |
303 border: 2px solid #eee8d5; | |
304 border-radius: 5px; | |
305 padding: 0.7em; | |
306 z-index: 5; | |
307 } | |
308 | |
298 #load-file { | 309 #load-file { |
299 position: absolute; | 310 position: absolute; |
300 top: 0; | 311 top: 0; |
301 right: 0; | 312 right: 0; |
302 margin-top: 0.5em; | 313 margin-top: 0.5em; |
303 margin-right: 0.5em; | 314 margin-right: 0.5em; |
304 z-index: 5; | 315 z-index: 5; |
305 opacity: 0.7; | 316 opacity: 0.7; |
306 } | 317 } |
307 | 318 |
308 #load-file input { | 319 #load-file input { |
309 background: #A0A0A0; | 320 background: #A0A0A0; |
310 border-radius: 5px; | 321 border-radius: 5px; |
311 padding: 0.5em; | 322 padding: 0.5em; |
312 } | 323 } |
313 | 324 |
314 #hidden-file-upload{ | 325 #hidden-file-upload { |
315 display: none; | 326 display: none; |
316 } | 327 } |
317 | 328 |
329 .prof-low { | |
330 color: #888; | |
331 } | |
332 | |
333 .prof-med { | |
334 color: #080; | |
335 } | |
336 | |
337 .prof-high { | |
338 color: #800; | |
339 } | |
OLD | NEW |