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 | 4 |
5 <polymer-element name="metrics-page" extends="observatory-element"> | 5 <polymer-element name="metrics-page" extends="observatory-element"> |
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 ul li:hover:not(.selected) { | 9 ul li:hover:not(.selected) { |
10 background-color: #FFF3E3; | 10 background-color: #FFF3E3; |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 .graph { | 128 .graph { |
129 min-height: 600px; | 129 min-height: 600px; |
130 } | 130 } |
131 </style> | 131 </style> |
132 <div id="graph" class="graph"> | 132 <div id="graph" class="graph"> |
133 </div> | 133 </div> |
134 </template> | 134 </template> |
135 </polymer-element> | 135 </polymer-element> |
136 | 136 |
137 <script type="application/dart" src="metrics.dart"></script> | 137 <script type="application/dart" src="metrics.dart"></script> |
OLD | NEW |