| 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="nav_bar.html"> | 2 <link rel="import" href="nav_bar.html"> |
| 3 <link rel="import" href="observatory_element.html"> | 3 <link rel="import" href="observatory_element.html"> |
| 4 <link rel="import" href="class_ref.html"> | 4 <link rel="import" href="class_ref.html"> |
| 5 | 5 |
| 6 <polymer-element name="class-tree" extends="observatory-element"> | 6 <polymer-element name="class-tree" extends="observatory-element"> |
| 7 <template> | 7 <template> |
| 8 <link rel="stylesheet" href="css/shared.css"> | 8 <link rel="stylesheet" href="css/shared.css"> |
| 9 <style> | 9 <style> |
| 10 .table { | 10 .table { |
| 11 border-spacing: 0px; | 11 border-spacing: 0px; |
| 12 width: 100%; | 12 width: 100%; |
| 13 margin-bottom: 20px | 13 margin-bottom: 20px |
| 14 vertical-align: middle; | 14 vertical-align: middle; |
| 15 } | 15 } |
| 16 | 16 |
| 17 tr { | 17 tr { |
| 18 background-color: #FFFFFF; | 18 background-color: #FFFFFF; |
| 19 } | 19 } |
| 20 | 20 |
| 21 tr:hover { | 21 tr:hover { |
| 22 background-color: #FAFAFA; | 22 background-color: #FAFAFA; |
| 23 } | 23 } |
| 24 </style> | 24 </style> |
| 25 <nav-bar> | 25 <nav-bar> |
| 26 <top-nav-menu last="{{ true }}"></top-nav-menu> | 26 <top-nav-menu last="{{ true }}"></top-nav-menu> |
| 27 <nav-control></nav-control> | |
| 28 </nav-bar> | 27 </nav-bar> |
| 29 <div class="content-centered"> | 28 <div class="content-centered"> |
| 30 <h1>Class Hierarchy</h1> | 29 <h1>Class Hierarchy</h1> |
| 31 <table id="tableTree" class="table"> | 30 <table id="tableTree" class="table"> |
| 32 <thead id="tableTreeHeader"> | 31 <thead id="tableTreeHeader"> |
| 33 <tr> | 32 <tr> |
| 34 <th>Class</th> | 33 <th>Class</th> |
| 35 </tr> | 34 </tr> |
| 36 </thead> | 35 </thead> |
| 37 <tbody id="tableTreeBody"></tbody> | 36 <tbody id="tableTreeBody"></tbody> |
| 38 </table> | 37 </table> |
| 39 </div> | 38 </div> |
| 40 </template> | 39 </template> |
| 41 </polymer-element> | 40 </polymer-element> |
| 42 | 41 |
| 43 <script type="application/dart" src="class_tree.dart"></script> | 42 <script type="application/dart" src="class_tree.dart"></script> |
| OLD | NEW |