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

Unified Diff: ui/webui/resources/cr_elements/v1_0/network/cr_network_icon.css

Issue 1406023003: Elim cr_elements/v1_0 subdirectory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: ui/webui/resources/cr_elements/v1_0/network/cr_network_icon.css
diff --git a/ui/webui/resources/cr_elements/v1_0/network/cr_network_icon.css b/ui/webui/resources/cr_elements/v1_0/network/cr_network_icon.css
deleted file mode 100644
index 8c8603e6b4745f441de843b2b29bd835495b4650..0000000000000000000000000000000000000000
--- a/ui/webui/resources/cr_elements/v1_0/network/cr_network_icon.css
+++ /dev/null
@@ -1,80 +0,0 @@
-/* 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. */
-
-/* Note: we use display: block here to avoid positioning issues related to
- the use of overflow: hidden. */
-:host {
- display: block;
- height: 50px;
- overflow: hidden;
- position: relative;
- width: 50px;
-}
-
-#icon {
- height: 100%;
- position: absolute;
- width: 100%;
-}
-
-#icon.multi-level {
- height: 500%;
-}
-
-#icon.level0 {
- top: 0px;
-}
-
-#icon.level1 {
- top: -100%;
-}
-
-#icon.level2 {
- top: -200%;
-}
-
-#icon.level3 {
- top: -300%;
-}
-
-#icon.level4 {
- top: -400%;
-}
-
-/* Connecting animation */
-
-#icon.connecting {
- -webkit-animation: levels 1s infinite;
- -webkit-animation-timing-function: steps(4, start);
-}
-
-@-webkit-keyframes levels {
- from {
- top: 0%;
- }
- to {
- top: -400%;
- }
-}
-
-/* Badges. */
-/* Note: These use left/right because we do not reverse the badges for RTL. */
-
-/* Upper-left corner */
-#technology {
- height: 40%;
- left: 0px;
- position: absolute;
- top: 0px;
-}
-
-/* Lower-right corner */
-#roaming,
-#secure {
- height: 40%;
- left: 60%;
- position: absolute;
- top: 60%;
- width: 40%;
-}

Powered by Google App Engine
This is Rietveld 408576698