| 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 a { | 7 a { |
| 8 color: #0489c3; | 8 color: #0489c3; |
| 9 text-decoration: none; | 9 text-decoration: none; |
| 10 } | 10 } |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 line-height: 125%; | 32 line-height: 125%; |
| 33 white-space: pre; | 33 white-space: pre; |
| 34 max-width: 0; | 34 max-width: 0; |
| 35 } | 35 } |
| 36 .currentLine { | 36 .currentLine { |
| 37 background-color: #fff; | 37 background-color: #fff; |
| 38 } | 38 } |
| 39 .currentCol { | 39 .currentCol { |
| 40 background-color: #6cf; | 40 background-color: #6cf; |
| 41 } | 41 } |
| 42 .breakAnnotation { |
| 43 background-color: #e66; |
| 44 color: white; |
| 45 } |
| 42 .hitsNone, .hitsNotExecuted, .hitsExecuted { | 46 .hitsNone, .hitsNotExecuted, .hitsExecuted { |
| 43 display: table-cell; | 47 display: table-cell; |
| 44 vertical-align: top; | 48 vertical-align: top; |
| 45 font: 400 14px consolas, courier, monospace; | 49 font: 400 14px consolas, courier, monospace; |
| 46 margin-left: 5px; | 50 margin-left: 5px; |
| 47 margin-right: 5px; | 51 margin-right: 5px; |
| 48 text-align: right; | 52 text-align: right; |
| 49 color: #a8a8a8; | 53 color: #a8a8a8; |
| 50 } | 54 } |
| 51 .hitsNotExecuted { | 55 .hitsNotExecuted { |
| 52 background-color: #EEA7A7; | 56 background-color: #faa; |
| 53 } | 57 } |
| 54 .hitsExecuted { | 58 .hitsExecuted { |
| 55 background-color: #9BDD9B; | 59 background-color: #aea; |
| 56 } | 60 } |
| 57 .noCopy {} | 61 .noCopy {} |
| 58 .emptyBreakpoint, .possibleBreakpoint, .busyBreakpoint, .unresolvedBreakpo
int, .resolvedBreakpoint { | 62 .emptyBreakpoint, .possibleBreakpoint, .busyBreakpoint, .unresolvedBreakpo
int, .resolvedBreakpoint { |
| 59 display: table-cell; | 63 display: table-cell; |
| 60 vertical-align: top; | 64 vertical-align: top; |
| 61 font: 400 14px consolas, courier, monospace; | 65 font: 400 14px consolas, courier, monospace; |
| 62 width: 1em; | 66 width: 1em; |
| 63 text-align: center; | 67 text-align: center; |
| 64 cursor: pointer; | 68 cursor: pointer; |
| 65 } | 69 } |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 height="{{ height }}" | 101 height="{{ height }}" |
| 98 currentPos="{{ currentPos }}" | 102 currentPos="{{ currentPos }}" |
| 99 inDebuggerContext="{{ inDebuggerContext }}" | 103 inDebuggerContext="{{ inDebuggerContext }}" |
| 100 variables="{{ variables }}"> | 104 variables="{{ variables }}"> |
| 101 </script-inset> | 105 </script-inset> |
| 102 </template> | 106 </template> |
| 103 </template> | 107 </template> |
| 104 </polymer-element> | 108 </polymer-element> |
| 105 | 109 |
| 106 <script type="application/dart" src="script_inset.dart"></script> | 110 <script type="application/dart" src="script_inset.dart"></script> |
| OLD | NEW |