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