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

Side by Side Diff: chrome/browser/resources/security_warnings/interstitial_v2.css

Issue 480393002: Move the security interstitials into a single folder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added comments Created 6 years, 4 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
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 a { 5 a {
6 color: #585858; 6 color: #585858;
7 } 7 }
8 8
9 body { 9 body {
10 background-color: #f7f7f7; 10 background-color: #f7f7f7;
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 background-color: rgb(206, 52, 38); 132 background-color: rgb(206, 52, 38);
133 border-color: rgba(255, 255, 255, .6); 133 border-color: rgba(255, 255, 255, .6);
134 } 134 }
135 135
136 .safe-browsing button:hover { 136 .safe-browsing button:hover {
137 box-shadow: 0 2px 3px rgba(0, 0, 0, .5); 137 box-shadow: 0 2px 3px rgba(0, 0, 0, .5);
138 } 138 }
139 139
140 .safe-browsing .icon { 140 .safe-browsing .icon {
141 background-image: -webkit-image-set( 141 background-image: -webkit-image-set(
142 url(../safe_browsing/images/1x/stop_sign.png) 1x, 142 url(images/1x/stop_sign.png) 1x,
143 url(../safe_browsing/images/2x/stop_sign.png) 2x); 143 url(images/2x/stop_sign.png) 2x);
144 } 144 }
145 145
146 .small-link { 146 .small-link {
147 color: #696969; 147 color: #696969;
148 font-size: .875em; 148 font-size: .875em;
149 } 149 }
150 150
151 .ssl .icon { 151 .ssl .icon {
152 background-image: -webkit-image-set( 152 background-image: -webkit-image-set(
153 url(images/1x/brokenssl_red.png) 1x, 153 url(images/1x/brokenssl_red.png) 1x,
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 195
196 .styled-checkbox input[type=checkbox]:checked + label::after { 196 .styled-checkbox input[type=checkbox]:checked + label::after {
197 opacity: 1; 197 opacity: 1;
198 } 198 }
199 199
200 .yellow :-webkit-any( 200 .yellow :-webkit-any(
201 a, #details, #details-button, h1, .small-link) { 201 a, #details, #details-button, h1, .small-link) {
202 color: black; 202 color: black;
203 } 203 }
204 204
205 .yellow .icon {
206 background-image: -webkit-image-set(
207 url(images/1x/brokenssl_yellow.png) 1x,
208 url(images/2x/brokenssl_yellow.png) 2x);
209 }
210
211 @media (max-width: 700px) { 205 @media (max-width: 700px) {
212 .interstitial-wrapper { 206 .interstitial-wrapper {
213 padding: 0 10%; 207 padding: 0 10%;
214 } 208 }
215 } 209 }
216 210
217 @media (max-height: 600px) { 211 @media (max-height: 600px) {
218 .interstitial-wrapper { 212 .interstitial-wrapper {
219 margin-top: 13%; 213 margin-top: 13%;
220 } 214 }
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 } 246 }
253 247
254 .nav-wrapper { 248 .nav-wrapper {
255 margin-top: 30px; 249 margin-top: 30px;
256 } 250 }
257 251
258 .small-link { 252 .small-link {
259 font-size: 1em; 253 font-size: 1em;
260 } 254 }
261 } 255 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698