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

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

Issue 2728773003: Make email field in Feedback app uneditable (Closed)
Patch Set: Fix test Created 3 years, 9 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
OLDNEW
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 5
6 html { 6 html {
7 height: 100%; 7 height: 100%;
8 } 8 }
9 9
10 body { 10 body {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 display: -webkit-flex; 66 display: -webkit-flex;
67 height: 29px; 67 height: 29px;
68 margin-top: 10px; 68 margin-top: 10px;
69 } 69 }
70 70
71 .content .text-field-container > label { 71 .content .text-field-container > label {
72 -webkit-flex: 0 1 auto; 72 -webkit-flex: 0 1 auto;
73 width: 100px; 73 width: 100px;
74 } 74 }
75 75
76 .content .text-field-container > select {
77 -webkit-padding-start: 5px;
78 border: 1px solid;
79 border-color: #c8c8c8;
xiyuan 2017/03/02 18:55:11 nit: this can fold into the previous line, i.e. bo
afakhry 2017/03/02 19:04:47 Done.
80 color: #585858;
81 flex: 1 1 auto;
82 height: 100%;
83 }
84
76 .content .text-field-container > input[type=text] { 85 .content .text-field-container > input[type=text] {
77 -webkit-flex: 1 1 auto; 86 -webkit-flex: 1 1 auto;
78 -webkit-padding-start: 5px; 87 -webkit-padding-start: 5px;
79 border: 1px solid; 88 border: 1px solid;
80 border-color: #c8c8c8; 89 border-color: #c8c8c8;
81 color: #585858; 90 color: #585858;
82 height: 100%; 91 height: 100%;
83 } 92 }
84 93
85 .content .text-field-container > input[type=checkbox] { 94 .content .text-field-container > input[type=checkbox] {
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 height: 50px; 204 height: 50px;
196 margin-bottom: 20px; 205 margin-bottom: 20px;
197 margin-top: 120px; 206 margin-top: 120px;
198 } 207 }
199 208
200 .srt-body { 209 .srt-body {
201 font-size: 14px; 210 font-size: 14px;
202 line-height: 24px; 211 line-height: 24px;
203 margin: 0 40px; 212 margin: 0 40px;
204 } 213 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698