| 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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 removed */ | 511 removed */ |
| 512 | 512 |
| 513 function-ref-wrapped > a[href]:hover { | 513 function-ref-wrapped > a[href]:hover { |
| 514 text-decoration: underline; | 514 text-decoration: underline; |
| 515 } | 515 } |
| 516 function-ref-wrapped > a[href] { | 516 function-ref-wrapped > a[href] { |
| 517 color: #0489c3; | 517 color: #0489c3; |
| 518 text-decoration: none; | 518 text-decoration: none; |
| 519 } | 519 } |
| 520 | 520 |
| 521 /* instance-ref */ |
| 522 /* TODO(cbernaschina) fix instance-ref-wrapped to instance-ref when wrapper |
| 523 removed */ |
| 524 |
| 525 instance-ref-wrapped .empathize { |
| 526 font-style: italic; |
| 527 } |
| 528 instance-ref-wrapped .indent { |
| 529 margin-left: 1.5em; |
| 530 font: 400 14px 'Montserrat', sans-serif; |
| 531 line-height: 150%; |
| 532 } |
| 533 instance-ref-wrapped .stackTraceBox { |
| 534 margin-left: 1.5em; |
| 535 background-color: #f5f5f5; |
| 536 border: 1px solid #ccc; |
| 537 padding: 10px; |
| 538 font-family: consolas, courier, monospace; |
| 539 font-size: 12px; |
| 540 white-space: pre; |
| 541 overflow-x: auto; |
| 542 } |
| 543 |
| 521 /* isolate-counter-chart */ | 544 /* isolate-counter-chart */ |
| 522 | 545 |
| 523 isolate-counter-chart { | 546 isolate-counter-chart { |
| 524 display: block; | 547 display: block; |
| 525 position: relative; | 548 position: relative; |
| 526 height: 300px; | 549 height: 300px; |
| 527 min-width: 350px; | 550 min-width: 350px; |
| 528 } | 551 } |
| 529 isolate-counter-chart > div.host { | 552 isolate-counter-chart > div.host { |
| 530 position: absolute; | 553 position: absolute; |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 905 | 928 |
| 906 vm-connect-target > button.delete-button:hover { | 929 vm-connect-target > button.delete-button:hover { |
| 907 background: #ff0000; | 930 background: #ff0000; |
| 908 } | 931 } |
| 909 | 932 |
| 910 /* vm-connect */ | 933 /* vm-connect */ |
| 911 | 934 |
| 912 vm-connect ul { | 935 vm-connect ul { |
| 913 list-style-type: none; | 936 list-style-type: none; |
| 914 } | 937 } |
| OLD | NEW |