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

Unified Diff: chrome/browser/resources/md_feedback/feedback_container.html

Issue 2039593002: [Md Feedback] Add initial content/strings to feedback-container element. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes per hcarmona@'s comments. Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/md_feedback/feedback_container.html
diff --git a/chrome/browser/resources/md_feedback/feedback_container.html b/chrome/browser/resources/md_feedback/feedback_container.html
new file mode 100644
index 0000000000000000000000000000000000000000..5f1029723e2b1b201e5c278ad6181808deef248d
--- /dev/null
+++ b/chrome/browser/resources/md_feedback/feedback_container.html
@@ -0,0 +1,31 @@
+<link rel="import" href="chrome://resources/html/polymer.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-textarea.html">
+<dom-module name="feedback-container">
+ <template>
+ <style>
+ paper-button {
+ cursor: pointer;
+ text-align: center;
+ }
+
+ #submit-button {
+ color: var(--paper-blue-700);
+ }
+ </style>
+ <div id="header">
+ <span>$i18n{headingText}</span>
+ </div>
+ <div>
+ <paper-textarea label="$i18n{openEndedLabel}"></paper-textarea>
+ <paper-input label="$i18n{urlLabel}"></paper-input>
+ <paper-input label="$i18n{emailLabel}"></paper-input>
+ </div>
+ <div>
+ <paper-button>$i18n{cancelButton}</paper-button>
+ <paper-button id="submit-button">$i18n{sendReportButton}</paper-button>
+ </div>
+ </template>
+ <script src="feedback_container.js"></script>
+</dom-module>
« no previous file with comments | « chrome/browser/resources/md_feedback/feedback.html ('k') | chrome/browser/resources/md_feedback/feedback_container.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698