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

Unified Diff: chrome/browser/resources/file_manager/css/file_manager.css

Issue 10834062: In case of search add "Searching..." string to the spinner in the center. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move spinner-without-text into spinner-container. Created 8 years, 5 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: chrome/browser/resources/file_manager/css/file_manager.css
diff --git a/chrome/browser/resources/file_manager/css/file_manager.css b/chrome/browser/resources/file_manager/css/file_manager.css
index 25cb64b4958473d96c6894bc0a6923d6ed3febd3..e398a96e68557b638719b671b96cfc8d0e3095e8 100644
--- a/chrome/browser/resources/file_manager/css/file_manager.css
+++ b/chrome/browser/resources/file_manager/css/file_manager.css
@@ -511,17 +511,31 @@ button#detail-view:not([disabled]) {
.spinner {
Vladislav Kaznacheev 2012/07/30 11:19:46 It might be not obvious but this CSS class is used
Oleg Eterevsky 2012/07/30 12:21:10 I've restored old styled and made spinner in FileM
background-image: url('../images/common/spinner.svg');
- background-size: 100%;
+ background-repeat: no-repeat;
+ opacity: 0.6;
+}
+
+#spinner-without-text {
height: 22px;
- left: 50%;
- margin-left: -11px;
- margin-top: -11px;
- opacity: 0.5;
- position: absolute;
- top: 50%;
width: 22px;
}
+#spinner-container {
+ -webkit-box-align: center;
+ -webkit-box-pack: center;
+ bottom: 0;
+ display: -webkit-box;
+ left: 0;
+ position: absolute;
+ right: 0;
+ top: 0;
+}
+
+#spinner-with-text {
+ font-size: 16px;
+ padding-left: 26px;
+}
+
.downloads-warning {
-webkit-box-align: center;
-webkit-box-orient: horizontal;

Powered by Google App Engine
This is Rietveld 408576698