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

Side by Side Diff: ui/webui/resources/cr_elements/cr_network_icon/cr_network_icon.css

Issue 874283006: Add custom Polymer network icon element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge fix Created 5 years, 9 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 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 :host {
6 display: inline-block;
7 overflow: hidden;
8 position: relative;
9 }
10
11 #icon {
12 height: 100%;
13 position: absolute;
14 width: 100%;
15 }
16
17 #icon.multi-level {
18 height: 500%;
19 }
20
21 #icon.level0 {
22 top: 0px;
23 }
24
25 #icon.level1 {
26 top: -100%;
27 }
28
29 #icon.level2 {
30 top: -200%;
31 }
32
33 #icon.level3 {
34 top: -300%;
35 }
36
37 #icon.level4 {
38 top: -400%;
39 }
40
41 #secure {
42 height: 40%;
43 margin-left: 60%;
44 margin-top: 60%;
45 position: absolute;
46 width: 40%;
47 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/chromeos/network_ui.cc ('k') | ui/webui/resources/cr_elements/cr_network_icon/cr_network_icon.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698