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

Unified Diff: experimental/flocking_geese/css/load_progress.css

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 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
« no previous file with comments | « experimental/flocking_geese/css/info_panel.css ('k') | experimental/flocking_geese/css/slider.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/flocking_geese/css/load_progress.css
diff --git a/experimental/flocking_geese/css/load_progress.css b/experimental/flocking_geese/css/load_progress.css
deleted file mode 100644
index 1d80fb75baea329b99ff395b3a1da860c6f54f51..0000000000000000000000000000000000000000
--- a/experimental/flocking_geese/css/load_progress.css
+++ /dev/null
@@ -1,75 +0,0 @@
-/* Copyright 2011 The Native Client Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-/**
- * Styling for a load progress bar.
- */
-
-/**
- * Center the progress bar in its container.
- */
-.progress {
- position: absolute;
- margin-top: -32px;
- margin-left: -80px;
- margin-bottom: 0px;
- top: 50%;
- left: 50%;
- width: 320px;
-}
-
-/**
- * Apply any horizontal centering to <P> elements within the progress bar.
- */
-.progress p {
- margin-left: inherit;
- margin-right: inherit;
- width: inherit;
-}
-
-/**
- * The status text. This is title text that goes above the progress bar.
- */
-.progressstatus {
- color: #202020;
- margin-bottom: 0;
-}
-
-/**
- * Text that indicates the progress, usually displayed as a number or a
- * percent (as in, "53% complete).
- */
-.progresstext {
- color: #999;
-}
-
-/**
- * The progress bar itself. This bar contains the track (see below).
- */
-.progressbar {
- border: 1px solid #999;
- margin-left: inherit;
- margin-right: inherit;
- padding: 1px;
- width: inherit;
-}
-
-/**
- * The progress track. This changes size to indicate progress. Change the
- * size by changing the style.width value.
- */
-.progresstrack {
- background: #CCC;
- width: 120px;
- height: 5px;
-}
-
-/**
- * "Tall" versions of the progress bar.
- */
-.tall .progresstrack {
- height: 8px;
-}
-
« no previous file with comments | « experimental/flocking_geese/css/info_panel.css ('k') | experimental/flocking_geese/css/slider.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698