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