| 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 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 659 removed */ | 659 removed */ |
| 660 | 660 |
| 661 function-ref-wrapped > a[href]:hover { | 661 function-ref-wrapped > a[href]:hover { |
| 662 text-decoration: underline; | 662 text-decoration: underline; |
| 663 } | 663 } |
| 664 function-ref-wrapped > a[href] { | 664 function-ref-wrapped > a[href] { |
| 665 color: #0489c3; | 665 color: #0489c3; |
| 666 text-decoration: none; | 666 text-decoration: none; |
| 667 } | 667 } |
| 668 | 668 |
| 669 /* inbound-reference */ |
| 670 |
| 671 inbound-reference > a[href]:hover { |
| 672 text-decoration: underline; |
| 673 } |
| 674 inbound-reference > a[href] { |
| 675 color: #0489c3; |
| 676 text-decoration: none; |
| 677 } |
| 678 |
| 679 inbound-reference .indent { |
| 680 margin-left: 1.5em; |
| 681 font: 400 14px 'Montserrat', sans-serif; |
| 682 line-height: 150%; |
| 683 } |
| 684 inbound-reference .stackTraceBox { |
| 685 margin-left: 1.5em; |
| 686 background-color: #f5f5f5; |
| 687 border: 1px solid #ccc; |
| 688 padding: 10px; |
| 689 font-family: consolas, courier, monospace; |
| 690 font-size: 12px; |
| 691 white-space: pre; |
| 692 overflow-x: auto; |
| 693 } |
| 694 |
| 669 /* instance-ref */ | 695 /* instance-ref */ |
| 670 /* TODO(cbernaschina) fix instance-ref-wrapped to instance-ref when wrapper | 696 /* TODO(cbernaschina) fix instance-ref-wrapped to instance-ref when wrapper |
| 671 removed */ | 697 removed */ |
| 672 | 698 |
| 673 instance-ref-wrapped .empathize { | 699 instance-ref-wrapped .empathize { |
| 674 font-style: italic; | 700 font-style: italic; |
| 675 } | 701 } |
| 676 instance-ref-wrapped .indent { | 702 instance-ref-wrapped .indent { |
| 677 margin-left: 1.5em; | 703 margin-left: 1.5em; |
| 678 font: 400 14px 'Montserrat', sans-serif; | 704 font: 400 14px 'Montserrat', sans-serif; |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 875 } | 901 } |
| 876 nav-refresh-wrapped > li > button[disabled] { | 902 nav-refresh-wrapped > li > button[disabled] { |
| 877 color: #aaa; | 903 color: #aaa; |
| 878 cursor: wait; | 904 cursor: wait; |
| 879 } | 905 } |
| 880 nav-refresh-wrapped > li { | 906 nav-refresh-wrapped > li { |
| 881 float: right; | 907 float: right; |
| 882 margin: 0; | 908 margin: 0; |
| 883 } | 909 } |
| 884 | 910 |
| 911 /* object-common */ |
| 912 /* TODO(cbernaschina) fix object-common-wrapped to object-common when wrapper |
| 913 removed */ |
| 914 |
| 915 object-common-wrapped button:hover { |
| 916 background-color: transparent; |
| 917 border: none; |
| 918 text-decoration: underline; |
| 919 } |
| 920 object-common-wrapped button { |
| 921 background-color: transparent; |
| 922 border: none; |
| 923 color: #0489c3; |
| 924 padding: 0; |
| 925 margin: -8px 4px; |
| 926 font-size: 20px; |
| 927 text-decoration: none; |
| 928 } |
| 929 |
| 885 /* observatory-application */ | 930 /* observatory-application */ |
| 886 | 931 |
| 887 observatory-application { | 932 observatory-application { |
| 888 display: block; | 933 display: block; |
| 889 height: 100%; | 934 height: 100%; |
| 890 } | 935 } |
| 891 | 936 |
| 892 observatory-application > div { | 937 observatory-application > div { |
| 893 display: block; | 938 display: block; |
| 894 height: 100%; | 939 height: 100%; |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1096 | 1141 |
| 1097 vm-connect-target > button.delete-button:hover { | 1142 vm-connect-target > button.delete-button:hover { |
| 1098 background: #ff0000; | 1143 background: #ff0000; |
| 1099 } | 1144 } |
| 1100 | 1145 |
| 1101 /* vm-connect */ | 1146 /* vm-connect */ |
| 1102 | 1147 |
| 1103 vm-connect ul { | 1148 vm-connect ul { |
| 1104 list-style-type: none; | 1149 list-style-type: none; |
| 1105 } | 1150 } |
| OLD | NEW |