Chromium Code Reviews| Index: ui/webui/resources/cr_elements/cr_network_icon/cr_network_icon.css |
| diff --git a/ui/webui/resources/cr_elements/cr_network_icon/cr_network_icon.css b/ui/webui/resources/cr_elements/cr_network_icon/cr_network_icon.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d18150b9b012286cf52d43c09ae206bc9a1efebe |
| --- /dev/null |
| +++ b/ui/webui/resources/cr_elements/cr_network_icon/cr_network_icon.css |
| @@ -0,0 +1,25 @@ |
| +/* |
|
Dan Beam
2015/02/21 01:07:57
remove extra /*
stevenjb
2015/02/23 21:31:57
Done.
|
| + * Copyright 2015 The Chromium Authors. All rights reserved. |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. |
|
Dan Beam
2015/02/21 01:07:57
* found in the LICENSE file. */
is what most CSS
stevenjb
2015/02/23 21:31:57
Done.
|
| + */ |
| + |
| +:host { |
| + display: inline-block; |
| + overflow: hidden; |
| + position: relative; |
| +} |
| + |
| +#icon { |
| + height: 100%; |
| + position: absolute; |
| + width: 100%; |
| +} |
| + |
| +#badge { |
| + height: 40%; |
| + margin-left: 60%; |
| + margin-top: 60%; |
| + position: absolute; |
| + width: 40%; |
| +} |