| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 </div> | 120 </div> |
| 121 </div> | 121 </div> |
| 122 </div> | 122 </div> |
| 123 </div> | 123 </div> |
| 124 </template> | 124 </template> |
| 125 </polymer-element> | 125 </polymer-element> |
| 126 | 126 |
| 127 <polymer-element name="metrics-graph" extends="observatory-element"> | 127 <polymer-element name="metrics-graph" extends="observatory-element"> |
| 128 <template> | 128 <template> |
| 129 <link rel="stylesheet" href="css/shared.css"> | 129 <link rel="stylesheet" href="css/shared.css"> |
| 130 <link rel="stylesheet" href="../../../../packages/charted/charts/themes/quan
tum_theme.css"> |
| 130 <style> | 131 <style> |
| 131 .graph { | 132 .chart-wrapper { |
| 132 min-height: 600px; | 133 padding: 40px; |
| 133 } | 134 width: 800px; |
| 135 } |
| 136 .chart-host-wrapper { |
| 137 height: 300px; |
| 138 } |
| 134 </style> | 139 </style> |
| 135 <div id="graph" class="graph"> | 140 <div class="chart-wrapper" id="metric-chart"> |
| 141 <div class="chart-host-wrapper"> |
| 142 <div class="chart-host" dir="ltr"></div> |
| 143 </div> |
| 136 </div> | 144 </div> |
| 137 </template> | 145 </template> |
| 138 </polymer-element> | 146 </polymer-element> |
| 139 | 147 |
| 140 <script type="application/dart" src="metrics.dart"></script> | 148 <script type="application/dart" src="metrics.dart"></script> |
| OLD | NEW |