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

Side by Side Diff: chrome/browser/resources/file_manager/css/file_manager.css

Issue 10399024: [File Manager] Polish the file count displayed when fetching metadata feeds from gdata server (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 html.col-resize * { 5 html.col-resize * {
6 cursor: col-resize !important; 6 cursor: col-resize !important;
7 } 7 }
8 8
9 /* Outer frame of the dialog. */ 9 /* Outer frame of the dialog. */
10 body { 10 body {
(...skipping 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1121 opacity: 1; 1121 opacity: 1;
1122 } 1122 }
1123 1123
1124 /* Message panel for unmounted GData */ 1124 /* Message panel for unmounted GData */
1125 .dialog-container:not([unmounted]) .dialog-body > div.unmounted-panel, 1125 .dialog-container:not([unmounted]) .dialog-body > div.unmounted-panel,
1126 .dialog-container[unmounted] .dialog-body > div:not(.unmounted-panel) { 1126 .dialog-container[unmounted] .dialog-body > div:not(.unmounted-panel) {
1127 display: none; 1127 display: none;
1128 } 1128 }
1129 1129
1130 div.unmounted-panel { 1130 div.unmounted-panel {
1131 color: #333;
1131 padding-left: 50px; 1132 padding-left: 50px;
1132 padding-top: 20px; 1133 padding-top: 20px;
1133 } 1134 }
1134 1135
1135 div.unmounted-panel > * { 1136 div.unmounted-panel > * {
1136 height: 22px; 1137 height: 22px;
1137 margin-bottom: 10px; 1138 margin-bottom: 10px;
1138 } 1139 }
1139 1140
1140 div.unmounted-panel > div { 1141 div.unmounted-panel > div {
1141 -webkit-box-align: center; 1142 -webkit-box-align: center;
1142 -webkit-box-orient: horizontal; 1143 -webkit-box-orient: horizontal;
1143 -webkit-box-pack: start; 1144 -webkit-box-pack: start;
1144 display: -webkit-box; 1145 display: -webkit-box;
1145 } 1146 }
1146 1147
1147 .unmounted-panel > .gdata.loading { 1148 .unmounted-panel > .gdata.loading {
1148 position: relative; 1149 position: relative;
1149 } 1150 }
1150 1151
1151 .unmounted-panel > .gdata.loading .spinner-box { 1152 .unmounted-panel > .gdata.loading .spinner-box {
1152 bottom: 0; 1153 bottom: 0;
1153 position: absolute; 1154 position: absolute;
1154 right: 100%; 1155 right: 100%;
1155 top: 0; 1156 top: 0;
1156 width: 40px; 1157 width: 40px;
1157 } 1158 }
1158 1159
1160 .unmounted-panel > .gdata.progress {
1161 color: #999;
1162 margin-top: -10px;
1163 }
1164
1159 .unmounted-panel:not([loading]) > .gdata.loading, 1165 .unmounted-panel:not([loading]) > .gdata.loading,
1160 .unmounted-panel:not([loading]) > .gdata.progress, 1166 .unmounted-panel:not([loading]) > .gdata.progress,
1161 .unmounted-panel:not([error]) > .gdata.error, 1167 .unmounted-panel:not([error]) > .gdata.error,
1162 .unmounted-panel:not([retry]) > .gdata.retry, 1168 .unmounted-panel:not([retry]) > .gdata.retry,
1163 .unmounted-panel:not([retry]) > .gdata.learn-more { 1169 .unmounted-panel:not([retry]) > .gdata.learn-more {
1164 display: none; 1170 display: none;
1165 } 1171 }
1166 1172
1167 .plain-link { 1173 .plain-link {
1168 color: rgb(17, 85, 204); 1174 color: rgb(17, 85, 204);
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
1270 100% { opacity: 1; } 1276 100% { opacity: 1; }
1271 } 1277 }
1272 1278
1273 :hover > .tooltip { 1279 :hover > .tooltip {
1274 -webkit-animation-duration: 800ms; 1280 -webkit-animation-duration: 800ms;
1275 -webkit-animation-iteration-count: 1; 1281 -webkit-animation-iteration-count: 1;
1276 -webkit-animation-name: tooltip-show; 1282 -webkit-animation-name: tooltip-show;
1277 -webkit-animation-timing-function: linear; 1283 -webkit-animation-timing-function: linear;
1278 opacity: 1; 1284 opacity: 1;
1279 } 1285 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698