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