| 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="code_ref.html"> | 2 <link rel="import" href="code_ref.html"> |
| 3 <link rel="import" href="function_ref.html"> | 3 <link rel="import" href="function_ref.html"> |
| 4 | 4 |
| 5 <link rel="import" href="sliding_checkbox.html"> | |
| 6 | |
| 7 <polymer-element name="logging-page"> | 5 <polymer-element name="logging-page"> |
| 8 <template> | 6 <template> |
| 9 <link rel="stylesheet" href="css/shared.css"> | 7 <link rel="stylesheet" href="css/shared.css"> |
| 10 <style> | 8 <style> |
| 11 .outlined { | 9 .outlined { |
| 12 -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); | 10 -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); |
| 13 -moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); | 11 -moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); |
| 14 box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); | 12 box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); |
| 15 margin: 4px; | 13 margin: 4px; |
| 16 } | 14 } |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 <span>Show messages with severity <select id="severityLevelSelector" value
="{{ severityLevel }}"></select> and higher</span> | 65 <span>Show messages with severity <select id="severityLevelSelector" value
="{{ severityLevel }}"></select> and higher</span> |
| 68 <hr> | 66 <hr> |
| 69 <div class="flex-row fill"> | 67 <div class="flex-row fill"> |
| 70 <div id="log" class="outlined"></div> | 68 <div id="log" class="outlined"></div> |
| 71 </div> | 69 </div> |
| 72 </div> | 70 </div> |
| 73 </template> | 71 </template> |
| 74 </polymer-element> | 72 </polymer-element> |
| 75 | 73 |
| 76 <script type="application/dart" src="logging.dart"></script> | 74 <script type="application/dart" src="logging.dart"></script> |
| OLD | NEW |