blob: 83ba2ec4f41f03daae75a00ec351ece1332fa106 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
#feedback-page {
-webkit-margin-start: 80px;
color: rgb(48, 57, 66);
}
#feedback-page > h1 {
border-bottom: 1px solid #eee;
padding-bottom: 6px;
width: 718px;
}
#content {
width: 600px;
}
#description {
display: block;
font-weight: 300;
text-align: start;
vertical-align: text-top;
}
#description-text {
box-sizing: border-box;
margin-top: 1em;
width: 100%;
}
.input-text-container {
-webkit-box-align: baseline;
display: -webkit-box;
}
.input-text-container > label {
-webkit-margin-end: 1em;
width: 150px;
}
.input-text-container > input {
-webkit-box-flex: 1;
display: block;
/* Don't push checkboxes out of alignment with bulky input. */
margin-bottom: -0.25em;
}
.thumbnail-list {
margin-bottom: 1em;
margin-top: 1em;
min-height: 151px;
}
.image-thumbnail-container {
border: 2px solid #ccc;
border-radius: 3px;
display: inline-block;
}
.image-thumbnail-container-selected:not(:only-of-type) {
border-color: green;
}
.image-thumbnail-container:not(:only-of-type):not(
.image-thumbnail-container-selected):hover {
border-color: rgb(184, 218, 176);
}
.image-thumbnail {
border: 2px solid white;
}
.image-thumbnail img {
display: block;
height: 140px;
}
#privacy-note {
margin-bottom: 0.8em;
width: 44em;
}
#buttons-pane {
/* Linux and Mac OS X display OK/Cancel dialogs in the reverse direction. */
<if expr="not pp_ifdef('toolkit_views')">
-webkit-box-direction: reverse;
</if>
display: -webkit-box;
padding: 0px 0px 12px;
}
#buttons-pane > input {
-webkit-margin-end: 0.8em;
display: block;
}
|