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

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: 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, .security.panel #security-state {
dgozman 2015/06/03 10:12:35 No ids please.
lgarron 2015/06/11 22:54:47 Done.
11 display: inline-block;
12 margin: 0.2em;
13 vertical-align: middle;
14 }
15
16 .security.panel #lock-icon {
17 width: 16px;
18 height: 16px;
19 border-radius: 2px;
20 background-image: url(Images/securityStateHttp.png);
21 background-size: cover;
22 }
23 .security.panel #lock-icon.SECURE {background-image: url(Images/securityStateSec ure.png);}
dgozman 2015/06/03 10:12:35 Can we avoid CAPS?
lgarron 2015/06/11 22:54:47 Done.
24 .security.panel #lock-icon.INSECURE {background-image: url(Images/securityStateI nsecure.png);}
25 .security.panel #lock-icon.WARNING {background-image: url(Images/securityStateWa rning.png);}
26 .security.panel #lock-icon.HTTP {background-image: url(Images/securityStateHttp. png);}
27
28 @media (-webkit-min-device-pixel-ratio: 1.5) {
29 .security.panel #lock-icon.SECURE {background-image: url(Images/securityStateS ecure_2x.png);}
30 .security.panel #lock-icon.INSECURE {background-image: url(Images/securityStat eInsecure_2x.png);}
31 .security.panel #lock-icon.WARNING {background-image: url(Images/securityState Warning_2x.png);}
32 .security.panel #lock-icon.HTTP {background-image: url(Images/securityStateHtt p_2x.png);}
33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698