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"> | |
4 | 3 |
5 <polymer-element name="persistent-handles-page" extends="observatory-element"> | 4 |
| 5 <polymer-element name="persistent-handles-page"> |
6 <template> | 6 <template> |
7 <link rel="stylesheet" href="css/shared.css"> | 7 <link rel="stylesheet" href="css/shared.css"> |
8 <style> | 8 <style> |
9 .table { | 9 .table { |
10 border-collapse: collapse!important; | 10 border-collapse: collapse!important; |
11 margin-bottom: 20px | 11 margin-bottom: 20px |
12 table-layout: fixed; | 12 table-layout: fixed; |
13 width: 100%; | 13 width: 100%; |
14 } | 14 } |
15 .table td:nth-of-type(1) { | 15 .table td:nth-of-type(1) { |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 <th on-click="{{changeSort}}" class="clickable" title="Object">{{ we
akPersistentHandlesTable.getColumnLabel(4) }}</th> | 98 <th on-click="{{changeSort}}" class="clickable" title="Object">{{ we
akPersistentHandlesTable.getColumnLabel(4) }}</th> |
99 </tr> | 99 </tr> |
100 </thead> | 100 </thead> |
101 <tbody id="weakPersistentHandlesTableBody"> | 101 <tbody id="weakPersistentHandlesTableBody"> |
102 </tbody> | 102 </tbody> |
103 </table> | 103 </table> |
104 <view-footer></view-footer> | 104 <view-footer></view-footer> |
105 </div> | 105 </div> |
106 </template> | 106 </template> |
107 </polymer-element> | 107 </polymer-element> |
OLD | NEW |