| 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 |
| 25 th { |
| 26 text-align: left; |
| 27 } |
| 24 </style> | 28 </style> |
| 25 <nav-bar> | 29 <nav-bar> |
| 26 <top-nav-menu last="{{ true }}"></top-nav-menu> | 30 <top-nav-menu last="{{ true }}"></top-nav-menu> |
| 27 </nav-bar> | 31 </nav-bar> |
| 28 <div class="content-centered"> | 32 <div class="content-centered"> |
| 29 <h1>Class Hierarchy</h1> | 33 <h1>Class Hierarchy</h1> |
| 30 <table id="tableTree" class="table"> | 34 <table id="tableTree" class="table"> |
| 31 <thead id="tableTreeHeader"> | 35 <thead id="tableTreeHeader"> |
| 32 <tr> | 36 <tr> |
| 33 <th>Class</th> | 37 <th>Class</th> |
| 34 </tr> | 38 </tr> |
| 35 </thead> | 39 </thead> |
| 36 <tbody id="tableTreeBody"></tbody> | 40 <tbody id="tableTreeBody"></tbody> |
| 37 </table> | 41 </table> |
| 38 </div> | 42 </div> |
| 39 </template> | 43 </template> |
| 40 </polymer-element> | 44 </polymer-element> |
| 41 | 45 |
| 42 <script type="application/dart" src="class_tree.dart"></script> | 46 <script type="application/dart" src="class_tree.dart"></script> |
| OLD | NEW |