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

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

Issue 2309683002: [MD Feedback] Add initial styling to feedback dialog. (Closed)
Patch Set: Updated strings. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/ui/webui/md_feedback/md_feedback_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
index aa1596c16429120447aa7d83ab9f5b9d6200b830..3c6b72f961245c0c57b2dee0c7cee6ad28765f1c 100644
--- a/chrome/browser/resources/md_feedback/feedback_container.html
+++ b/chrome/browser/resources/md_feedback/feedback_container.html
@@ -6,11 +6,45 @@
<dom-module name="feedback-container">
<template>
<style>
+ #additional-info {
+ margin-top: 10px;
+ }
+
+ #buttons {
+ display: -webkit-flex;
+ justify-content: flex-end;
+ }
+
+ #header {
+ font-size: 1.25em;
+ margin: 12px 0;
+ }
+
paper-button {
cursor: pointer;
text-align: center;
}
+ paper-checkbox {
+ --paper-checkbox-size: 14px;
+ }
+
+ paper-input,
+ paper-textarea {
+ --paper-input-container-input: {
+ font-size: 1.0em;
+ line-height: 1.0em;
+ };
+ --paper-input-container-label: {
+ font-size: 1.0em;
+ line-height: 1.0em;
+ };
+ }
+
+ paper-input-container {
+ padding: 0;
+ }
+
#submit-button {
color: var(--paper-blue-700);
}
@@ -18,21 +52,19 @@
<div id="header">
<span>$i18n{headingText}</span>
</div>
- <div>
- <paper-textarea label="$i18n{openEndedLabel}"></paper-textarea>
- <paper-input label="$i18n{urlLabel}" placeholder="[[url]]"></paper-input>
- <paper-input label="$i18n{emailLabel}" placeholder="[[email]]"></paper-input>
- </div>
+ <hr>
+ <paper-textarea label="$i18n{openEndedLabel}"></paper-textarea>
+ <span id="additional-info">$i18n{additionalInfoLabel}</span>
+ <paper-input label="$i18n{urlLabel}" placeholder="[[url]]"></paper-input>
+ <paper-input label="$i18n{emailLabel}" placeholder="[[email]]"></paper-input>
<div>
<paper-checkbox>$i18n{includeScreenshotLabel}</paper-checkbox>
</div>
<div>
<paper-checkbox>$i18n{sendSystemInfoLabel}</paper-checkbox>
</div>
- <div>
- <span id="privacyNote"></span>
- </div>
- <div>
+ <p id="privacyNote"></p>
+ <div id="buttons">
<paper-button>$i18n{cancelButton}</paper-button>
<paper-button id="submit-button">$i18n{sendReportButton}</paper-button>
</div>
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/ui/webui/md_feedback/md_feedback_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698