Upstream version 6.35.121.0
[platform/framework/web/crosswalk.git] / src / chrome / renderer / resources / neterror.css
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
3  * found in the LICENSE file. */
4
5 body {
6   background-color: #E6E6E6;
7   font-family: Helvetica, Arial, sans-serif;
8   font-size: 10pt;
9   margin: 50px 40px 20px 40px;
10 }
11
12 #main-frame-error {
13   margin: auto;
14   max-width: 540px;
15   min-width: 200px;
16 }
17
18 /* Don't use the main frame div when the error is in a subframe. */
19 html[subframe] #main-frame-error {
20   display: none;
21 }
22
23 /* Don't use the subframe error div when the error is in a main frame. */
24 html:not([subframe]) #sub-frame-error {
25   display: none;
26 }
27
28 #box {
29   background-color: #fbfbfb;
30   border: 1px solid #AAA;
31   border-bottom: 1px solid #888;
32   border-radius: 3px;
33   color: black;
34 <if expr="not is_android and not is_ios">
35   /* Not done on mobile for performance reasons. */
36   box-shadow: 0px 2px 2px #AAA;
37 </if>
38 }
39
40 #diagnose-button {
41   margin-top: 20px;
42   margin-bottom: 10px;
43   -webkit-margin-start: 0px;
44 }
45
46 #content-top #buttons,
47 #content-top h1 {
48   color: #666;
49   margin: 10px 0px 30px 0px;
50   font-weight: normal;
51   font-size: 1.5em;
52   text-align: center;
53 }
54
55 h2 {
56   color: #666;
57   font-size: 1.2em;
58   font-weight: normal;
59   margin: 10px 0;
60 }
61
62 a {
63   color: #15c;
64   text-decoration: none;
65 }
66
67 .icon {
68   -webkit-user-select: none;
69 }
70
71 .icon-generic {
72   /**
73    * Can't access chrome://theme/IDR_ERROR_NETWORK_GENERIC from an untrusted
74    * renderer process, so embed the resource manually.
75    */
76   content: -webkit-image-set(
77       url('../../app/theme/default_100_percent/common/error_network_generic.png') 1x,
78       url('../../app/theme/default_200_percent/common/error_network_generic.png') 2x);
79 }
80
81 .icon-offline {
82   content: -webkit-image-set(
83       url('../../app/theme/default_100_percent/common/error_network_offline.png') 1x,
84       url('../../app/theme/default_200_percent/common/error_network_offline.png') 2x);
85 }
86
87 #content-top {
88   margin: 20px;
89 }
90
91 #help-box-outer {
92   overflow: hidden;
93   -webkit-transition: height ease-in 218ms;
94 }
95
96 #help-box-inner {
97   background-color: #f9f9f9;
98   border-top: 1px solid #EEE;
99   color: #444;
100   padding: 20px;
101   text-align: start;
102 }
103
104 #suggestion {
105   margin-top: 15px;
106 }
107
108 #short-suggestion {
109   margin-top: 5px;
110 }
111
112 #sub-frame-error-details {
113   color: #8F8F8F;
114 <if expr="not is_android and not is_ios">
115   /* Not done on mobile for performance reasons. */
116   text-shadow: 0 1px 0 rgba(255,255,255,0.3);
117 </if>
118 }
119
120 [jscontent=failedUrl] {
121   overflow-wrap: break-word;
122 }
123
124 button {
125   border: 1px solid rgba(0, 0, 0, 0.25);
126   border-radius: 2px;
127   color: #444;
128   -webkit-user-select: none;
129 <if expr="not is_android">
130   /* iOS does not support linear-gradient without a prefix. */
131   background-image: -webkit-linear-gradient(#ededed, #ededed 38%, #dedede);
132   text-shadow: 0 1px 0 rgb(240, 240, 240);
133 </if>
134 <if expr="is_android">
135   /* Android uses flat background colors. */
136   background-color: #ededed;
137   font-weight: bold;
138 </if>
139 <if expr="not is_android and not is_ios">
140   /* Not done on mobile for performance reasons. */
141   box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.75);
142 </if>
143 }
144
145 button:hover {
146   border: 1px solid rgba(0, 0, 0, 0.3);
147   color: #000;
148 <if expr="not is_android">
149   background-image: -webkit-linear-gradient(#f0f0f0, #f0f0f0 38%, #e0e0e0);
150 </if>
151 <if expr="is_android">
152   background-color: #f0f0f0;
153 </if>
154 <if expr="not is_android and not is_ios">
155   box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.95);
156 </if>
157 }
158
159 button:active {
160   border: 1px solid rgba(0, 0, 0, 0.3);
161   color: #444;
162 <if expr="not is_android">
163   background-image: -webkit-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7);
164 </if>
165 <if expr="is_android">
166   background-color: #e7e7e7;
167 </if>
168 <if expr="not is_android and not is_ios">
169   box-shadow: none;
170 </if>
171 }
172
173 .text-button {
174   margin: 0px 5px;
175   min-height: 29px;
176   min-width: 65px;
177   padding: 7px 13px;
178 }
179
180 .blue-button {
181   color: #fff;
182 <if expr="not is_android">
183   background-image: -webkit-linear-gradient(#5d9aff, #5d9aff 38%, #5891f0);
184   border: 1px solid rgba(45, 102, 195, 1);
185   text-shadow: 0 1px 0 rgba(0,0,0,0.5);
186 </if>
187 <if expr="is_android">
188   background-color: rgb(39, 180, 231);
189   border: 1px solid rgb(0, 152, 206);
190 </if>
191 <if expr="not is_android and not is_ios">
192   box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.2);
193 </if>
194 }
195
196 .blue-button:hover {
197 <if expr="not is_android">
198   background-image: -webkit-linear-gradient(#659efd, #659efd 38%, #6097f1);
199   border: 1px solid rgba(45, 102, 195, 1);
200 </if>
201 <if expr="not is_android and not is_ios">
202   box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.2);
203 </if>
204 }
205
206 .blue-button:active {
207 <if expr="not is_android">
208   background-image: -webkit-linear-gradient(#6095ed, #6095ed 38%, #6095ed);
209   border: 1px solid rgb(38, 84, 160);
210 </if>
211 <if expr="is_android">
212   background-color: rgb(0, 152, 206);
213 </if>
214 <if expr="not is_android and not is_ios">
215   box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
216 </if>
217 }
218
219 #search-container {
220   /* Prevents a space between controls. */
221   display: flex;
222   margin-top: 20px;
223 }
224
225 #search-box {
226   border: 1px solid #cdcdcd;
227   flex-grow: 1;
228   font-size: 16px;
229   height: 26px;
230   margin-right: 0;
231   padding: 1px 9px;
232 }
233
234 #search-box:focus {
235   border: 1px solid #5d9aff;
236   outline: none;
237 }
238
239 #search-button {
240   border: none;
241   border-top-left-radius: 0;
242   border-bottom-left-radius: 0;
243   box-shadow: none;
244   display: flex;
245   height: 30px;
246   margin: 0;
247   width: 60px;
248   padding: 0;
249 }
250
251 #search-image {
252   content:
253       -webkit-image-set(
254           url('../../app/theme/default_100_percent/common/omnibox_search_button_loupe.png') 1x,
255           url('../../app/theme/default_200_percent/common/omnibox_search_button_loupe.png') 2x);
256   margin: auto;
257 }
258
259 .hidden {
260   display: none;
261 }
262
263 .suggestions {
264   margin-top: 18px;
265 }
266
267 .suggestion-header {
268   font-weight: bold;
269   margin-bottom: 4px;
270 }
271
272 .suggestion-body {
273   color: #777;
274 }
275
276 .error-code {
277   color: #A0A0A0;
278   margin-top: 15px;
279 }
280
281 /* Increase line height at higher resolutions. */
282 @media (min-width: 641px) and (min-height: 641px) {
283   #help-box-inner {
284     line-height: 18px;
285   }
286 }
287
288 /* Decrease padding at low sizes. */
289 @media (max-width: 640px), (max-height: 640px) {
290   body {
291     margin: 15px;
292   }
293   h1 {
294     margin: 10px 0px 15px 0px;
295   }
296   #content-top {
297     margin: 15px;
298   }
299   #help-box-inner {
300     padding: 20px;
301   }
302   .suggestions {
303     margin-top: 10px;
304   }
305   .suggestion-header {
306     margin-bottom: 0px;
307   }
308   .error-code {
309     margin-top: 10px;
310   }
311 }
312
313 /* Don't allow overflow when in a subframe. */
314 html[subframe] body {
315   overflow: hidden;
316 }
317
318 #sub-frame-error {
319   -webkit-align-items: center;
320   background-color: #DDD;
321   display: -webkit-flex;
322   -webkit-flex-flow: column;
323   height: 100%;
324   -webkit-justify-content: center;
325   left: 0px;
326   position: absolute;
327   top: 0px;
328   width: 100%;
329 }
330
331 #sub-frame-error:hover {
332   background-color: #EEE;
333 }
334
335 #sub-frame-error-details {
336   margin: 0 10px;
337   visibility: hidden;
338 }
339
340 /* Show details only when hovering. */
341 #sub-frame-error:hover #sub-frame-error-details {
342   visibility: visible;
343 }
344
345 /* If the iframe is too small, always hide the error code. */
346 /* TODO(mmenke): See if overflow: no-display works better, once supported. */
347 @media (max-width: 200px), (max-height: 95px) {
348   #sub-frame-error-details {
349     display: none;
350   }
351 }