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

Side by Side Diff: Source/devtools/front_end/security/securityPanel.css

Issue 1159163005: Add a minimal Security panel to DevTools (behind a hidden experiment). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Move sdk/SecurityManager.js to security/SecurityModel.js. forrealz. Created 5 years, 6 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
OLDNEW
(Empty)
1 /* Copyright (c) 2015 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
6 .security.panel {
7 margin: 1em;
8 }
9
10 .security.panel .lock-icon,
11 .security.panel .security-state {
12 display: inline-block;
13 margin: 0.2em;
14 vertical-align: middle;
15 }
16
17 .security.panel .lock-icon {
18 width: 16px;
19 height: 16px;
20 border-radius: 2px;
21 background-image: url(Images/securityStateHttp.png);
22 background-size: cover;
23 }
24 .security.panel .lock-icon-unknown {background-image: url(Images/securityStateH ttp.png);}
dgozman 2015/06/16 13:42:58 Each CSS properity should be on a separate line.
lgarron 2015/06/16 19:25:43 Awwwwww. :-( Okay.
25 .security.panel .lock-icon-http {background-image: url(Images/securityStateH ttp.png);}
26 .security.panel .lock-icon-insecure {background-image: url(Images/securityStateI nsecure.png);}
27 .security.panel .lock-icon-warning {background-image: url(Images/securityStateW arning.png);}
28 .security.panel .lock-icon-secure {background-image: url(Images/securityStateS ecure.png);}
29
30 @media (-webkit-min-device-pixel-ratio: 1.5) {
31 .security.panel .lock-icon-unknown {background-image: url(Images/securitySt ateHttp_2x.png);}
32 .security.panel .lock-icon-http {background-image: url(Images/securitySt ateHttp_2x.png);}
33 .security.panel .lock-icon-insecure {background-image: url(Images/securitySt ateInsecure_2x.png);}
34 .security.panel .lock-icon-warning {background-image: url(Images/securitySt ateWarning_2x.png);}
35 .security.panel .lock-icon-secure {background-image: url(Images/securitySt ateSecure_2x.png);}
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698