Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: skin/issue-reporter.css

Issue 29583568: Issue 5880 - Basic issue reporter implementation (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome
Patch Set: Created Oct. 19, 2017, 12:28 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « skin/icons/checkbox.png ('k') | skin/popup.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 body
2 {
3 display: flex;
4 flex-direction: column;
5 align-items: center;
6 margin: 1.2rem 0.3rem;
7 font-family: Segoe UI, Arial, sans-serif;
8 font-size: 1.25rem;
9 color: #494949;
10 background-color: #F3F3F3;
11 }
12
13 html:not([dir="rtl"]) header
14 {
15 text-align: right;
16 margin-right: 2rem;
17 }
18
19 html[dir="rtl"] header
20 {
21 text-align: left;
22 margin-left: 2rem;
23 }
24
25 header
26 {
27 display: flex;
28 flex-direction: row;
29 flex-shrink: 0;
30 align-items: flex-end;
31 margin-bottom: 2rem;
32 }
33
34 header > .title
35 {
36 display: flex;
37 flex-direction: column;
38 }
39
40 .title > h1
41 {
42 margin: 0rem;
43 font-size: 1.5rem;
44 font-weight: 100;
45 }
46
47 .title > h1 > strong
48 {
49 font-weight: 700;
50 }
51
52 .title > p
53 {
54 margin: 0rem;
55 font-size: 2.4rem;
56 }
57
58 main
59 {
60 flex-grow: 1;
61 display: flex;
62 flex-direction: column;
63 box-sizing: border-box;
64 width: 46.3rem;
65 padding: 1.4rem;
66 background-color: #FFFFFF;
67 border: 1px solid #CDCDCD;
68 }
69
70 .page:not([hidden])
71 {
72 display: flex;
73 flex-grow: 1;
74 flex-direction: column;
75 }
76
77 main h1
78 {
79 padding: 0;
80 margin: 1.4rem 0rem;
81 }
82
83 #dataCollectorProgressContainer
84 {
85 display: flex;
86 flex-direction: row;
87 justify-content: center;
88 margin-top: 2rem;
89 }
90
91 #typeSelectorGroup > p
92 {
93 margin-top: 0.5em;
94 margin-bottom: 1em;
95 font-size: 80%;
96 }
97
98 html:not([dir="rtl"]) #typeSelectorGroup > p
99 {
100 margin-left: 30px;
101 }
102
103 html[dir="rtl"] #typeSelectorGroup > p
104 {
105 margin-right: 30px;
106 }
107
108 #anonymousSubmissionContainer
109 {
110 margin-top: 0.5em;
111 }
112
113 #anonymousSubmissionWarning,
114 #commentLengthWarning
115 {
116 margin-top: 0.5em;
117 color: #C00000;
118 font-size: 80%;
119 }
120
121 #comment
122 {
123 flex-grow: 1;
124 min-height: 2em;
125 }
126
127 #sendingProgressContainer:not([hidden])
128 {
129 display: flex;
130 flex-direction: row;
131 justify-content: center;
132 margin-top: 2rem;
133 }
134
135 #result
136 {
137 flex-grow: 1;
138 border-width: 0px;
139 }
140
141 footer
142 {
143 display: flex;
144 flex-direction: row;
145 box-sizing: border-box;
146 width: 46.3rem;
147 margin-top: 2rem;
148 }
149
150 #privacyPolicy
151 {
152 flex-grow: 1;
153 align-self: center;
154 font-size: 1.125rem;
155 font-weight: 700;
156 }
157
158 /*
159 * Generic styles
160 */
161
162 [data-invisible="true"]
163 {
164 visibility: hidden;
165 }
166
167 button
168 {
169 padding: 0.8rem 1.2rem;
170 background-color: transparent;
171 font-size: 1.125rem;
172 font-weight: 700;
173 text-decoration: none;
174 text-transform: uppercase;
175 cursor: pointer;
176 }
177
178 html:not([dir="rtl"]) button
179 {
180 margin-left: 0.5rem;
181 }
182
183 html[dir="rtl"] button
184 {
185 margin-right: 0.5rem;
186 }
187
188 button.primary
189 {
190 border: 0px;
191 color: #FFF;
192 background-color: #099CD0;
193 }
194
195 button.primary:not([disabled]):hover
196 {
197 box-shadow: inset 0 0 0 3px #005D80;
198 }
199
200 button.primary[disabled]
201 {
202 background-color: #5CBCE1;
203 }
204
205 button.secondary
206 {
207 border: 1px solid #099CD0;
208 color: #099CD0;
209 }
210
211 button.secondary:hover
212 {
213 box-shadow: inset 0 0 0 2px #099CD0;
214 }
215
216 input[type="text"],
217 input[type="email"],
218 textarea
219 {
220 font-size: 1.25rem;
221 border: 2px solid #099CD0;
222 }
223
224 input[type="email"]:invalid
225 {
226 border-color: #E00000;
227 }
228
229 input[type="checkbox"],
230 input[type="radio"]
231 {
232 width: 18px;
233 height: 18px;
234 padding: 0px;
235 margin: 0px 3px;
236 border: 0px;
237 -webkit-appearance: none;
238 -moz-appearance: none;
239 background-color: transparent;
240 background-image: url(icons/checkbox.png);
241 display: inline-block;
242 }
243
244 input[type="checkbox"]:checked,
245 input[type="radio"]:checked
246 {
247 background-position: 0px 18px;
248 }
OLDNEW
« no previous file with comments | « skin/icons/checkbox.png ('k') | skin/popup.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld