OLD | NEW |
1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-texta
rea.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-texta
rea.html"> |
6 <dom-module name="feedback-container"> | 6 <dom-module id="feedback-container"> |
7 <template> | 7 <template> |
8 <style> | 8 <style> |
9 #additional-info { | 9 #additional-info { |
10 margin-top: 10px; | 10 margin-top: 10px; |
11 } | 11 } |
12 | 12 |
13 #buttons { | 13 #buttons { |
14 display: -webkit-flex; | 14 display: -webkit-flex; |
15 justify-content: flex-end; | 15 justify-content: flex-end; |
16 } | 16 } |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 <div> | 63 <div> |
64 <paper-checkbox>$i18n{sendSystemInfoLabel}</paper-checkbox> | 64 <paper-checkbox>$i18n{sendSystemInfoLabel}</paper-checkbox> |
65 </div> | 65 </div> |
66 <p id="privacyNote"></p> | 66 <p id="privacyNote"></p> |
67 <div id="buttons"> | 67 <div id="buttons"> |
68 <paper-button>$i18n{cancelButton}</paper-button> | 68 <paper-button>$i18n{cancelButton}</paper-button> |
69 <paper-button id="submit-button">$i18n{sendReportButton}</paper-button> | 69 <paper-button id="submit-button">$i18n{sendReportButton}</paper-button> |
70 </div> | 70 </div> |
71 </template> | 71 </template> |
72 <script src="feedback_container.js"></script> | 72 <script src="feedback_container.js"></script> |
73 </dom-module> | 73 </dom-module> |
OLD | NEW |