OLD | NEW |
(Empty) | |
| 1 <head> |
| 2 <link rel="import" href="observatory_element.html"> |
| 3 </head> |
| 4 <polymer-element name="script-inset" extends="observatory-element"> |
| 5 <template> |
| 6 <style> |
| 7 .sourceInset { |
| 8 padding-left: 15%; |
| 9 padding-right: 15%; |
| 10 } |
| 11 .grayBox { |
| 12 width: 100%; |
| 13 background-color: #f5f5f5; |
| 14 border: 1px solid #ccc; |
| 15 padding: 10px; |
| 16 } |
| 17 </style> |
| 18 <div class="sourceInset"> |
| 19 <content></content> |
| 20 <div class="grayBox"> |
| 21 <table> |
| 22 <tbody> |
| 23 <tr template repeat="{{ line in lines }}"> |
| 24 <td style="font-family: consolas, courier, monospace;font-size: 1e
m;line-height: 1.2em;white-space: nowrap;">{{line.line}}</td> |
| 25 <td> </td> |
| 26 <td width="99%" style="font-family: consolas, courier, monospace;f
ont-size: 1em;line-height: 1.2em;white-space: pre;">{{line.text}}</td> |
| 27 </tr> |
| 28 </tbody> |
| 29 </table> |
| 30 </div> |
| 31 </div> |
| 32 </template> |
| 33 <script type="application/dart" src="script_inset.dart"></script> |
| 34 </polymer-element> |
OLD | NEW |