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 |
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"> |
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 |
(...skipping 19 matching lines...) Expand all Loading... |
36 <div class="content-centered"> | 36 <div class="content-centered"> |
37 <h1>Class Hierarchy</h1> | 37 <h1>Class Hierarchy</h1> |
38 <table id="tableTree" class="table"> | 38 <table id="tableTree" class="table"> |
39 <tbody id="tableTreeBody"></tbody> | 39 <tbody id="tableTreeBody"></tbody> |
40 </table> | 40 </table> |
41 </div> | 41 </div> |
42 </template> | 42 </template> |
43 </polymer-element> | 43 </polymer-element> |
44 | 44 |
45 <script type="application/dart" src="class_tree.dart"></script> | 45 <script type="application/dart" src="class_tree.dart"></script> |
OLD | NEW |