| 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 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 /* TODO(cbernaschina) fix eval-box-wrapped to error-ref when wrapper | 788 /* TODO(cbernaschina) fix eval-box-wrapped to error-ref when wrapper |
| 789 removed */ | 789 removed */ |
| 790 | 790 |
| 791 eval-box-wrapped a[href]:hover { | 791 eval-box-wrapped a[href]:hover { |
| 792 text-decoration: underline; | 792 text-decoration: underline; |
| 793 } | 793 } |
| 794 eval-box-wrapped a[href] { | 794 eval-box-wrapped a[href] { |
| 795 color: #0489c3; | 795 color: #0489c3; |
| 796 text-decoration: none; | 796 text-decoration: none; |
| 797 } | 797 } |
| 798 eval-box-wrapped .quicks > button:hover { |
| 799 background-color: transparent; |
| 800 border: none; |
| 801 text-decoration: underline; |
| 802 } |
| 803 eval-box-wrapped .quicks > button { |
| 804 background-color: transparent; |
| 805 border: none; |
| 806 color: #0489c3; |
| 807 padding: 0; |
| 808 margin-right: 1em; |
| 809 text-decoration: none; |
| 810 } |
| 798 eval-box-wrapped .empathize { | 811 eval-box-wrapped .empathize { |
| 799 font-style: italic; | 812 font-style: italic; |
| 800 } | 813 } |
| 801 eval-box-wrapped .indent { | 814 eval-box-wrapped .indent { |
| 802 margin-left: 1.5em; | 815 margin-left: 1.5em; |
| 803 font: 400 14px 'Montserrat', sans-serif; | 816 font: 400 14px 'Montserrat', sans-serif; |
| 804 line-height: 150%; | 817 line-height: 150%; |
| 805 } | 818 } |
| 806 eval-box-wrapped .stackTraceBox { | 819 eval-box-wrapped .stackTraceBox { |
| 807 margin-left: 1.5em; | 820 margin-left: 1.5em; |
| (...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1707 | 1720 |
| 1708 vm-connect-target > button.delete-button:hover { | 1721 vm-connect-target > button.delete-button:hover { |
| 1709 background: #ff0000; | 1722 background: #ff0000; |
| 1710 } | 1723 } |
| 1711 | 1724 |
| 1712 /* vm-connect */ | 1725 /* vm-connect */ |
| 1713 | 1726 |
| 1714 vm-connect ul { | 1727 vm-connect ul { |
| 1715 list-style-type: none; | 1728 list-style-type: none; |
| 1716 } | 1729 } |
| OLD | NEW |