| OLD | NEW |
| 1 /* Global styles */ | 1 /* Global styles */ |
| 2 * { | 2 * { |
| 3 margin: 0; | 3 margin: 0; |
| 4 padding: 0; | 4 padding: 0; |
| 5 box-sizing: border-box; | 5 box-sizing: border-box; |
| 6 } | 6 } |
| 7 | 7 |
| 8 body { | 8 body { |
| 9 padding-top: 56px; | 9 padding-top: 56px; |
| 10 color: #333; | 10 color: #333; |
| (...skipping 881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 padding: 5px; | 892 padding: 5px; |
| 893 border: 1px solid white; | 893 border: 1px solid white; |
| 894 } | 894 } |
| 895 debugger-frame:hover { | 895 debugger-frame:hover { |
| 896 border: 1px solid #e0e0e0; | 896 border: 1px solid #e0e0e0; |
| 897 } | 897 } |
| 898 debugger-frame.shadow { | 898 debugger-frame.shadow { |
| 899 box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), | 899 box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), |
| 900 0 2px 5px 0 rgba(0, 0, 0, 0.26); | 900 0 2px 5px 0 rgba(0, 0, 0, 0.26); |
| 901 } | 901 } |
| 902 debugger-frame.causalFrame { |
| 903 background-color: #D7CCC8; |
| 904 } |
| 902 debugger-frame.current { | 905 debugger-frame.current { |
| 903 box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.26), | 906 box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.26), |
| 904 0 2px 5px 0 rgba(0, 0, 0, 0.46); | 907 0 2px 5px 0 rgba(0, 0, 0, 0.46); |
| 905 border: 1px solid #444; | 908 border: 1px solid #444; |
| 906 } | 909 } |
| 907 debugger-frame > button { | 910 debugger-frame > button { |
| 908 display: block; | 911 display: block; |
| 909 width: 100%; | 912 width: 100%; |
| 910 text-align: left; | 913 text-align: left; |
| 911 background-color: transparent; | 914 background-color: transparent; |
| (...skipping 1390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2302 | 2305 |
| 2303 vm-connect-target > button.delete-button:hover { | 2306 vm-connect-target > button.delete-button:hover { |
| 2304 background: #ff0000; | 2307 background: #ff0000; |
| 2305 } | 2308 } |
| 2306 | 2309 |
| 2307 /* vm-connect */ | 2310 /* vm-connect */ |
| 2308 | 2311 |
| 2309 vm-connect ul { | 2312 vm-connect ul { |
| 2310 list-style-type: none; | 2313 list-style-type: none; |
| 2311 } | 2314 } |
| OLD | NEW |