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

Side by Side Diff: chrome/browser/resources/ssl/blocking.css

Issue 23965003: New SSL blocking screen (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More shared code Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/ssl/blocking.html » ('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 /* 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 .explanation-par {
6 line-height: 18px;
7 padding: 0 20px 20px 20px;
8 }
9
10 #icon-lock {
11 content: -webkit-image-set(
12 url('locked_page_100.png') 1x,
13 url('locked_page_200.png') 2x);
14 padding-bottom: 15px;
15 padding-top: 10px;
16 }
17
18 /* Decrease padding at low sizes. */
19 @media (max-width: 640px) {
Patrick Dubroy 2013/10/21 13:32:56 I missed this before, but you can actually combine
felt 2013/10/21 14:56:57 Done.
20 .explanation-par,
21 .ssl-help-box-inner {
22 padding: 0;
23 }
24 }
25
26 /* Decrease padding at low sizes. */
27 @media (max-height: 640px) {
28 .explanation-par,
29 .ssl-help-box-inner {
30 padding: 0;
31 }
32 }
33
34 .ssl-help-box-inner {
35 padding: 0 20px;
36 }
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/ssl/blocking.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698