| OLD | NEW |
| (Empty) |
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | |
| 2 | |
| 3 <polymer-element name="class-tree"> | |
| 4 <template> | |
| 5 <link rel="stylesheet" href="css/shared.css"> | |
| 6 <style> | |
| 7 .table { | |
| 8 border-spacing: 0px; | |
| 9 width: 100%; | |
| 10 margin-bottom: 20px | |
| 11 vertical-align: middle; | |
| 12 } | |
| 13 | |
| 14 tr { | |
| 15 background-color: #FFFFFF; | |
| 16 } | |
| 17 | |
| 18 tr:hover { | |
| 19 background-color: #FAFAFA; | |
| 20 } | |
| 21 | |
| 22 th { | |
| 23 text-align: left; | |
| 24 } | |
| 25 </style> | |
| 26 <nav-bar> | |
| 27 <top-nav-menu></top-nav-menu> | |
| 28 <vm-nav-menu vm="{{ isolate.vm }}"></vm-nav-menu> | |
| 29 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu> | |
| 30 <nav-menu link="{{ makeLink('/class-tree', isolate) }}" anchor="class hier
archy" last="{{ true }}"></nav-menu> | |
| 31 <nav-notify notifications="{{ app.notifications }}"></nav-notify> | |
| 32 </nav-bar> | |
| 33 <div class="content-centered"> | |
| 34 <h1>Class Hierarchy</h1> | |
| 35 <table id="tableTree" class="table"> | |
| 36 <tbody id="tableTreeBody"></tbody> | |
| 37 </table> | |
| 38 </div> | |
| 39 </template> | |
| 40 </polymer-element> | |
| 41 | |
| 42 <script type="application/dart" src="class_tree.dart"></script> | |
| OLD | NEW |