Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: chrome/browser/resources/md_feedback/feedback_container.html

Issue 2400853002: [MD Feedback] Change paper-input placeholders to values. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 name="feedback-container">
7 <template> 7 <template>
8 <style> 8 <style>
9 #additional-info { 9 #additional-info {
10 margin-top: 10px; 10 margin-top: 10px;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 #submit-button { 48 #submit-button {
49 color: var(--paper-blue-700); 49 color: var(--paper-blue-700);
50 } 50 }
51 </style> 51 </style>
52 <div id="header"> 52 <div id="header">
53 <span>$i18n{headingText}</span> 53 <span>$i18n{headingText}</span>
54 </div> 54 </div>
55 <hr> 55 <hr>
56 <paper-textarea label="$i18n{openEndedLabel}"></paper-textarea> 56 <paper-textarea label="$i18n{openEndedLabel}"></paper-textarea>
57 <span id="additional-info">$i18n{additionalInfoLabel}</span> 57 <span id="additional-info">$i18n{additionalInfoLabel}</span>
58 <paper-input label="$i18n{urlLabel}" placeholder="[[url]]"></paper-input> 58 <paper-input label="$i18n{urlLabel}" value="[[url]]"></paper-input>
59 <paper-input label="$i18n{emailLabel}" placeholder="[[email]]"></paper-input > 59 <paper-input label="$i18n{emailLabel}" value="[[email]]"></paper-input>
60 <div> 60 <div>
61 <paper-checkbox>$i18n{includeScreenshotLabel}</paper-checkbox> 61 <paper-checkbox>$i18n{includeScreenshotLabel}</paper-checkbox>
62 </div> 62 </div>
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>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698