| 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="function_ref.html"> | 2 <link rel="import" href="function_ref.html"> |
| 3 <link rel="import" href="nav_bar.html"> | 3 <link rel="import" href="nav_bar.html"> |
| 4 <link rel="import" href="observatory_element.html"> | 4 <link rel="import" href="observatory_element.html"> |
| 5 <link rel="import" href="script_inset.html"> | 5 <link rel="import" href="script_inset.html"> |
| 6 <link rel="import" href="script_ref.html"> | 6 <link rel="import" href="script_ref.html"> |
| 7 | 7 |
| 8 <!-- TODO(turnidge): Use core-icon once core_elements work properly in | 8 <!-- TODO(turnidge): Use core-icon once core_elements work properly in |
| 9 devtools --> | 9 devtools --> |
| 10 <polymer-element name="icon-expand-less" noscript> | 10 <polymer-element name="icon-expand-less" noscript> |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 padding: 5px; | 184 padding: 5px; |
| 185 border: 1px solid white; | 185 border: 1px solid white; |
| 186 } | 186 } |
| 187 .frameOuter:hover { | 187 .frameOuter:hover { |
| 188 border: 1px solid #e0e0e0; | 188 border: 1px solid #e0e0e0; |
| 189 } | 189 } |
| 190 .shadow { | 190 .shadow { |
| 191 box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), | 191 box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), |
| 192 0 2px 5px 0 rgba(0, 0, 0, 0.26); | 192 0 2px 5px 0 rgba(0, 0, 0, 0.26); |
| 193 } | 193 } |
| 194 .current { |
| 195 box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.26), |
| 196 0 2px 5px 0 rgba(0, 0, 0, 0.46); |
| 197 border: 1px solid #444; |
| 198 } |
| 194 .frameSummaryText { | 199 .frameSummaryText { |
| 195 display: inline-block; | 200 display: inline-block; |
| 196 padding: 5px; | 201 padding: 5px; |
| 197 } | 202 } |
| 198 .frameId { | 203 .frameId { |
| 199 display: inline-block; | 204 display: inline-block; |
| 200 width: 60px; | 205 width: 60px; |
| 201 } | 206 } |
| 202 .frameOuter .frameExpander { | 207 .frameOuter .frameExpander { |
| 203 position: absolute; | 208 position: absolute; |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 margin: 20px; | 313 margin: 20px; |
| 309 font: 400 16px consolas, courier, monospace; | 314 font: 400 16px consolas, courier, monospace; |
| 310 width: 95%; | 315 width: 95%; |
| 311 } | 316 } |
| 312 </style> | 317 </style> |
| 313 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus
> | 318 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus
> |
| 314 </template> | 319 </template> |
| 315 </polymer-element> | 320 </polymer-element> |
| 316 | 321 |
| 317 <script type="application/dart" src="debugger.dart"></script> | 322 <script type="application/dart" src="debugger.dart"></script> |
| OLD | NEW |