OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 #feedback-page { | 5 #feedback-page { |
6 -webkit-margin-start: 80px; | 6 -webkit-margin-start: 80px; |
7 color: rgb(48, 57, 66); | 7 color: rgb(48, 57, 66); |
8 } | 8 } |
9 | 9 |
10 #feedback-page > h1 { | 10 #feedback-page > h1 { |
(...skipping 12 matching lines...) Expand all Loading... |
23 text-align: start; | 23 text-align: start; |
24 vertical-align: text-top; | 24 vertical-align: text-top; |
25 } | 25 } |
26 | 26 |
27 #description-text { | 27 #description-text { |
28 box-sizing: border-box; | 28 box-sizing: border-box; |
29 margin-top: 1em; | 29 margin-top: 1em; |
30 width: 100%; | 30 width: 100%; |
31 } | 31 } |
32 | 32 |
33 #page-url { | 33 .input-text-container { |
34 -webkit-box-align: baseline; | 34 -webkit-box-align: baseline; |
35 display: -webkit-box; | 35 display: -webkit-box; |
36 } | 36 } |
37 | 37 |
38 #page-url-text { | 38 .input-text-container > label { |
| 39 -webkit-margin-end: 1em; |
| 40 width: 150px; |
| 41 } |
| 42 |
| 43 .input-text-container > input { |
| 44 -webkit-box-flex: 1; |
| 45 display: block; |
39 /* Don't push checkboxes out of alignment with bulky input. */ | 46 /* Don't push checkboxes out of alignment with bulky input. */ |
40 margin-bottom: -0.25em; | 47 margin-bottom: -0.25em; |
41 } | 48 } |
42 | 49 |
43 #page-url > label { | |
44 -webkit-margin-end: 1em; | |
45 } | |
46 | |
47 #page-url-text { | |
48 -webkit-box-flex: 1; | |
49 display: block; | |
50 } | |
51 | |
52 .thumbnail-list { | 50 .thumbnail-list { |
53 margin-bottom: 1em; | 51 margin-bottom: 1em; |
54 margin-top: 1em; | 52 margin-top: 1em; |
55 min-height: 151px; | 53 min-height: 151px; |
56 } | 54 } |
57 | 55 |
58 .image-thumbnail-container { | 56 .image-thumbnail-container { |
59 border: 2px solid #ccc; | 57 border: 2px solid #ccc; |
60 border-radius: 3px; | 58 border-radius: 3px; |
61 display: inline-block; | 59 display: inline-block; |
(...skipping 28 matching lines...) Expand all Loading... |
90 -webkit-box-direction: reverse; | 88 -webkit-box-direction: reverse; |
91 </if> | 89 </if> |
92 display: -webkit-box; | 90 display: -webkit-box; |
93 padding: 0; | 91 padding: 0; |
94 } | 92 } |
95 | 93 |
96 #buttons-pane > input { | 94 #buttons-pane > input { |
97 -webkit-margin-end: 0.8em; | 95 -webkit-margin-end: 0.8em; |
98 display: block; | 96 display: block; |
99 } | 97 } |
OLD | NEW |