OLD | NEW |
1 /* Global styles */ | 1 /* Global styles */ |
2 * { | 2 * { |
3 margin: 0; | 3 margin: 0; |
4 padding: 0; | 4 padding: 0; |
5 font: 400 14px 'Montserrat', sans-serif; | 5 font: 400 14px 'Montserrat', sans-serif; |
6 color: #333; | 6 color: #333; |
7 box-sizing: border-box; | 7 box-sizing: border-box; |
8 } | 8 } |
9 | 9 |
10 body { | 10 body { |
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 error-ref-wrapped > pre { | 395 error-ref-wrapped > pre { |
396 background-color: #f5f5f5; | 396 background-color: #f5f5f5; |
397 border: 1px solid #ccc; | 397 border: 1px solid #ccc; |
398 padding: 10px; | 398 padding: 10px; |
399 font-family: consolas, courier, monospace; | 399 font-family: consolas, courier, monospace; |
400 font-size: 1em; | 400 font-size: 1em; |
401 line-height: 1.2em; | 401 line-height: 1.2em; |
402 white-space: pre; | 402 white-space: pre; |
403 } | 403 } |
404 | 404 |
| 405 /* flag-list */ |
| 406 |
| 407 flag-list .comment { |
| 408 color: #aaa; |
| 409 } |
| 410 |
| 411 flag-list .flag { |
| 412 padding: 3px 0; |
| 413 } |
| 414 |
| 415 flag-list .name { |
| 416 font-weight: bold; |
| 417 margin-right: 0.7em; |
| 418 } |
| 419 |
| 420 flag-list .value { |
| 421 margin-left: 0.7em; |
| 422 } |
| 423 |
405 /* function-ref */ | 424 /* function-ref */ |
406 /* TODO(cbernaschina) fix function-ref-wrapped to function-ref when wrapper | 425 /* TODO(cbernaschina) fix function-ref-wrapped to function-ref when wrapper |
407 removed */ | 426 removed */ |
408 | 427 |
409 function-ref-wrapped > a[href]:hover { | 428 function-ref-wrapped > a[href]:hover { |
410 text-decoration: underline; | 429 text-decoration: underline; |
411 } | 430 } |
412 function-ref-wrapped > a[href] { | 431 function-ref-wrapped > a[href] { |
413 color: #0489c3; | 432 color: #0489c3; |
414 text-decoration: none; | 433 text-decoration: none; |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
612 vm-connect-target > button.delete-button { | 631 vm-connect-target > button.delete-button { |
613 margin-left: 0.28em; | 632 margin-left: 0.28em; |
614 padding: 4px; | 633 padding: 4px; |
615 background: transparent; | 634 background: transparent; |
616 border: none !important; | 635 border: none !important; |
617 } | 636 } |
618 | 637 |
619 vm-connect-target > button.delete-button:hover { | 638 vm-connect-target > button.delete-button:hover { |
620 background: #ff0000; | 639 background: #ff0000; |
621 } | 640 } |
OLD | NEW |