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

Side by Side Diff: chrome/browser/resources/feedback.html

Issue 10266010: Standardize spacing of checkboxes on the feedback page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | Annotate | Revision Log
« 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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"/> 4 <meta charset="utf-8"/>
5 <title i18n-content="page-title"></title> 5 <title i18n-content="page-title"></title>
6 <!-- We want to keep our style in sync with the options page. --> 6 <!-- We want to keep our style in sync with the options page. -->
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
Evan Stade 2012/04/30 20:25:06 this change makes the page look crazy.
kevers 2012/04/30 20:43:22 Oops...fixed.
8 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> 7 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared2.css">
9 <link rel="stylesheet" href="feedback.css"> 9 <link rel="stylesheet" href="feedback.css">
10 10
11 <script src="chrome://resources/js/local_strings.js"></script> 11 <script src="chrome://resources/js/local_strings.js"></script>
12 <script src="chrome://resources/js/util.js"></script> 12 <script src="chrome://resources/js/util.js"></script>
13 <script src="chrome://feedback/feedback.js"></script> 13 <script src="chrome://feedback/feedback.js"></script>
14 <script src="chrome://feedback/strings.js"></script> 14 <script src="chrome://feedback/strings.js"></script>
15 </head> 15 </head>
16 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 16 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
17 <div id="main-content"> 17 <div id="main-content">
18 <div id="navbar-container"> 18 <div id="navbar-container">
(...skipping 21 matching lines...) Expand all
40 </td> 40 </td>
41 </tr> 41 </tr>
42 <tr> 42 <tr>
43 <td> 43 <td>
44 <table style="-webkit-border-vertical-spacing: 0px;"> 44 <table style="-webkit-border-vertical-spacing: 0px;">
45 <!-- Page URL --> 45 <!-- Page URL -->
46 <tr> 46 <tr>
47 <td> 47 <td>
48 <table class="feedback-table"> 48 <table class="feedback-table">
49 <tr> 49 <tr>
50 <td class="feedback-fieldlabel"> 50 <td class="feedback-fieldlabel checkbox">
51 <label> 51 <label>
52 <input id="page-url-checkbox" type="checkbox" 52 <input id="page-url-checkbox" type="checkbox"
53 value="pageurl" checked> 53 value="pageurl" checked>
54 <span id="page-url-label" 54 <span id="page-url-label"
55 i18n-content="page-url"></span> 55 i18n-content="page-url"></span>
56 </label> 56 </label>
57 </td> 57 </td>
58 <td> 58 <td>
59 <input id="page-url-text" class="feedback-field" 59 <input id="page-url-text" class="feedback-field"
60 maxlength="200"> 60 maxlength="200">
61 </td> 61 </td>
62 </tr> 62 </tr>
63 </table> 63 </table>
64 </td> 64 </td>
65 </tr> 65 </tr>
66 <if expr="pp_ifdef('chromeos')"> 66 <if expr="pp_ifdef('chromeos')">
67 <!-- User e-mail --> 67 <!-- User e-mail -->
68 <tr> 68 <tr>
69 <td> 69 <td>
70 <table id="user-email-table" class="feedback-table"> 70 <table id="user-email-table" class="feedback-table">
71 <tr> 71 <tr>
72 <td class="feedback-fieldlabel"> 72 <td class="feedback-fieldlabel checkbox">
73 <label> 73 <label>
74 <input id="user-email-checkbox" type="checkbox" 74 <input id="user-email-checkbox" type="checkbox"
75 checked> 75 checked>
76 <span id="user-email-label" 76 <span id="user-email-label"
77 i18n-content="user-email"></span> 77 i18n-content="user-email"></span>
78 </label> 78 </label>
79 </td> 79 </td>
80 <td> 80 <td>
81 <label id="user-email-text" 81 <label id="user-email-text"
82 class="feedback-field"></label> 82 class="feedback-field"></label>
83 </td> 83 </td>
84 </tr> 84 </tr>
85 </table> 85 </table>
86 </td> 86 </td>
87 </tr> 87 </tr>
88 <!-- System Information --> 88 <!-- System Information -->
89 <tr> 89 <tr>
90 <td> 90 <td>
91 <table class="feedback-table"> 91 <table class="feedback-table">
92 <tr> 92 <tr>
93 <td class="feedback-fieldlabel"> 93 <td class="feedback-fieldlabel checkbox">
94 <label> 94 <label>
95 <input id="sys-info-checkbox" type="checkbox" 95 <input id="sys-info-checkbox" type="checkbox"
96 checked> 96 checked>
97 <span id="sysinfo-label"> 97 <span id="sysinfo-label">
98 <a id="sysinfo-url" href="#" 98 <a id="sysinfo-url" href="#"
99 i18n-content="sysinfo"></a> 99 i18n-content="sysinfo"></a>
100 </span> 100 </span>
101 </label> 101 </label>
102 </td> 102 </td>
103 </tr> 103 </tr>
104 </table> 104 </table>
105 </td> 105 </td>
106 </tr> 106 </tr>
107 </if> 107 </if>
108 <!-- Screenshot --> 108 <!-- Screenshot -->
109 <tr id="screenshot-row"> 109 <tr id="screenshot-row">
110 <td> 110 <td>
111 <table class="feedback-table"> 111 <table class="feedback-table">
112 <tr> 112 <tr>
113 <td class="feedback-fieldlabel"> 113 <td class="feedback-fieldlabel checkbox">
114 <label> 114 <label>
115 <input id="screenshot-checkbox" type="checkbox"> 115 <input id="screenshot-checkbox" type="checkbox">
116 <span id="screenshot-label-current" 116 <span id="screenshot-label-current"
117 i18n-content="current-screenshot"></span> 117 i18n-content="current-screenshot"></span>
118 </label> 118 </label>
119 <if expr="pp_ifdef('chromeos')"> 119 <if expr="pp_ifdef('chromeos')">
120 <span id="screenshot-label-saved" 120 <span id="screenshot-label-saved"
121 i18n-content="saved-screenshot" hidden> 121 i18n-content="saved-screenshot" hidden>
122 </span> 122 </span>
123 <a id="screenshot-link-tosaved" href="#" 123 <a id="screenshot-link-tosaved" href="#"
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 </table> 164 </table>
165 </div> 165 </div>
166 </div> 166 </div>
167 </div> 167 </div>
168 </div> 168 </div>
169 </div> 169 </div>
170 <script src="chrome://resources/js/i18n_template.js"></script> 170 <script src="chrome://resources/js/i18n_template.js"></script>
171 <script src="chrome://resources/js/i18n_process.js"></script> 171 <script src="chrome://resources/js/i18n_process.js"></script>
172 </body> 172 </body>
173 </html> 173 </html>
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