| 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="instance_ref.html"> | |
| 3 | |
| 4 | 2 |
| 5 <polymer-element name="action-link"> | 3 <polymer-element name="action-link"> |
| 6 <template> | 4 <template> |
| 7 <style> | 5 <style> |
| 8 .idle { | 6 .idle { |
| 9 color: #0489c3; | 7 color: #0489c3; |
| 10 cursor: pointer; | 8 cursor: pointer; |
| 11 text-decoration: none; | 9 text-decoration: none; |
| 12 } | 10 } |
| 13 .idle:hover { | 11 .idle:hover { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 28 <span class="idle"><a on-click="{{ doAction }}">[{{ label }}]</a></span> | 26 <span class="idle"><a on-click="{{ doAction }}">[{{ label }}]</a></span> |
| 29 </template> | 27 </template> |
| 30 <template if="{{ color != null }}"> | 28 <template if="{{ color != null }}"> |
| 31 <span class="idle" style="color:{{ color }}"><a on-click="{{ doAction }}
">[{{ label }}]</a></span> | 29 <span class="idle" style="color:{{ color }}"><a on-click="{{ doAction }}
">[{{ label }}]</a></span> |
| 32 </template> | 30 </template> |
| 33 </template> | 31 </template> |
| 34 </template> | 32 </template> |
| 35 </polymer-element> | 33 </polymer-element> |
| 36 | 34 |
| 37 <script type="application/dart" src="action_link.dart"></script> | 35 <script type="application/dart" src="action_link.dart"></script> |
| OLD | NEW |