Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(659)

Side by Side Diff: runtime/observatory/lib/src/elements/css/shared.css

Issue 2646443005: Track async causal stack traces (Closed)
Patch Set: rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/lib/stacktrace.cc ('k') | runtime/observatory/lib/src/elements/debugger.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « runtime/lib/stacktrace.cc ('k') | runtime/observatory/lib/src/elements/debugger.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698