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