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"> | |
3 | |
4 | 2 |
5 <polymer-element name="metrics-page"> | 3 <polymer-element name="metrics-page"> |
6 <template> | 4 <template> |
7 <link rel="stylesheet" href="css/shared.css"> | 5 <link rel="stylesheet" href="css/shared.css"> |
8 <style> | 6 <style> |
9 ul li:hover:not(.selected) { | 7 ul li:hover:not(.selected) { |
10 background-color: #FFF3E3; | 8 background-color: #FFF3E3; |
11 } | 9 } |
12 .selected { | 10 .selected { |
13 background-color: #0489c3; | 11 background-color: #0489c3; |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 </style> | 138 </style> |
141 <div class="chart-wrapper" id="metric-chart"> | 139 <div class="chart-wrapper" id="metric-chart"> |
142 <div class="chart-host-wrapper"> | 140 <div class="chart-host-wrapper"> |
143 <div class="chart-host" dir="ltr"></div> | 141 <div class="chart-host" dir="ltr"></div> |
144 </div> | 142 </div> |
145 </div> | 143 </div> |
146 </template> | 144 </template> |
147 </polymer-element> | 145 </polymer-element> |
148 | 146 |
149 <script type="application/dart" src="metrics.dart"></script> | 147 <script type="application/dart" src="metrics.dart"></script> |
OLD | NEW |