OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright 2015 The Chromium Authors. All rights reserved. | |
3 * Use of this source code is governed by a BSD-style license that can be | |
4 * found in the LICENSE file. | |
5 */ | |
6 | |
7 :host { | |
8 display: inline-block; | |
9 } | |
10 | |
11 div { | |
12 border-style: none; | |
13 height: 100%; | |
14 margin: 0; | |
15 overflow: hidden; | |
16 padding: 0; | |
17 position: relative; | |
18 width: 100%; | |
19 } | |
20 | |
21 #icon { | |
22 height: 100%; | |
23 position: absolute; | |
24 width: 100%; | |
25 } | |
26 | |
27 #badge { | |
28 height: 50%; | |
29 margin-left: 50%; | |
James Hawkins
2015/02/06 21:37:37
Let's make sure we've got RTL support from the get
stevenjb
2015/02/10 00:22:04
Generally I agree, but I'm not sure we want to ref
| |
30 margin-top: 50%; | |
31 position: absolute; | |
32 width: 50%; | |
33 } | |
OLD | NEW |