OLD | NEW |
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
2 <link rel="import" href="observatory_element.html"> | 2 <link rel="import" href="observatory_element.html"> |
3 | 3 |
4 <polymer-element name="script-inset" extends="observatory-element"> | 4 <polymer-element name="script-inset" extends="observatory-element"> |
5 <template> | 5 <template> |
6 <style> | 6 <style> |
7 .sourceInset { | 7 .sourceInset { |
8 } | 8 } |
9 .sourceTable { | 9 .sourceTable { |
10 display: table; | 10 display: table; |
(...skipping 28 matching lines...) Expand all Loading... |
39 width: 4em; | 39 width: 4em; |
40 text-align: right; | 40 text-align: right; |
41 color: #a8a8a8; | 41 color: #a8a8a8; |
42 } | 42 } |
43 .hitsNotExecuted { | 43 .hitsNotExecuted { |
44 background-color: #EEA7A7; | 44 background-color: #EEA7A7; |
45 } | 45 } |
46 .hitsExecuted { | 46 .hitsExecuted { |
47 background-color: #9BDD9B; | 47 background-color: #9BDD9B; |
48 } | 48 } |
49 | 49 .noCopy {} |
50 .emptyBreakpoint, .possibleBreakpoint, .busyBreakpoint, .unresolvedBreakpo
int, .resolvedBreakpoint { | 50 .emptyBreakpoint, .possibleBreakpoint, .busyBreakpoint, .unresolvedBreakpo
int, .resolvedBreakpoint { |
51 display: table-cell; | 51 display: table-cell; |
52 vertical-align: top; | 52 vertical-align: top; |
53 font: 400 14px consolas, courier, monospace; | 53 font: 400 14px consolas, courier, monospace; |
54 width: 1em; | 54 width: 1em; |
55 text-align: center; | 55 text-align: center; |
56 cursor: pointer; | 56 cursor: pointer; |
57 } | 57 } |
58 .possibleBreakpoint { | 58 .possibleBreakpoint { |
59 color: #e0e0e0; | 59 color: #e0e0e0; |
(...skipping 13 matching lines...) Expand all Loading... |
73 } | 73 } |
74 .resolvedBreakpoint { | 74 .resolvedBreakpoint { |
75 color: white; | 75 color: white; |
76 background-color: #e66; | 76 background-color: #e66; |
77 } | 77 } |
78 </style> | 78 </style> |
79 </template> | 79 </template> |
80 </polymer-element> | 80 </polymer-element> |
81 | 81 |
82 <script type="application/dart" src="script_inset.dart"></script> | 82 <script type="application/dart" src="script_inset.dart"></script> |
OLD | NEW |