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

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

Issue 10140023: [File Manager] Welcome to Google Docs banner (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added Google Drive logo, updated strings Created 8 years, 8 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
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 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after
1142 width: 40px; 1142 width: 40px;
1143 } 1143 }
1144 1144
1145 .unmounted-panel:not([loading]) > .gdata.loading, 1145 .unmounted-panel:not([loading]) > .gdata.loading,
1146 .unmounted-panel:not([error]) > .gdata.error, 1146 .unmounted-panel:not([error]) > .gdata.error,
1147 .unmounted-panel:not([retry]) > .gdata.retry, 1147 .unmounted-panel:not([retry]) > .gdata.retry,
1148 .unmounted-panel:not([retry]) > .gdata.learn-more { 1148 .unmounted-panel:not([retry]) > .gdata.learn-more {
1149 display: none; 1149 display: none;
1150 } 1150 }
1151 1151
1152 .plain-link {
1153 color: rgb(17, 85, 204);
1154 cursor: default;
1155 }
1156
1152 body[ash] .dialog-title, 1157 body[ash] .dialog-title,
1153 body[type='full-page'] [invisibleif='full-page'], 1158 body[type='full-page'] [invisibleif='full-page'],
1154 body:not([type='full-page']) [visibleif='full-page'], 1159 body:not([type='full-page']) [visibleif='full-page'],
1155 body:not([type='saveas-file']) [visibleif='saveas-file'], 1160 body:not([type='saveas-file']) [visibleif='saveas-file'],
1156 body:not([type='saveas-file']):not([type='full-page']) 1161 body:not([type='saveas-file']):not([type='full-page'])
1157 [visibleif='saveas-file full-page'] { 1162 [visibleif='saveas-file full-page'] {
1158 display: none; 1163 display: none;
1159 } 1164 }
1165
1166 /* Google Docs welcome banners.*/
SeRya 2012/04/25 14:09:56 I think 150 lines of CSS what is used once need to
Vladislav Kaznacheev 2012/04/25 14:41:59 Done.
1167 .gdata-welcome-wrapper {
1168 background-image: url('../images/clouds.png');
1169 background-repeat: repeat-x;
1170 }
1171
1172 .gdata-welcome-icon {
1173 background-image: url('../images/gdrive_logo.png');
1174 background-repeat: no-repeat;
1175 }
1176
1177 .gdata-welcome-close {
1178 background-image: url('../images/common/close_x_gray.png');
SeRya 2012/04/25 14:09:56 We should kill this icon and use shared x.png/x-ho
Vladislav Kaznacheev 2012/04/25 14:41:59 Done.
1179 background-position: center center;
1180 height: 21px;
1181 opacity: 0.5;
1182 position: absolute;
1183 right: 8px;
1184 top: 8px;
1185 width: 21px;
1186 }
1187
1188 .gdata-welcome-close:hover {
1189 opacity: 1;
1190 }
1191
1192 .gdata-welcome-links {
1193 -webkit-box-orient: horizontal;
1194 display: -webkit-box;
1195 }
1196
1197 /* Header welcome banner. */
1198 .gdata-welcome.header {
1199 -webkit-box-flex: 0;
1200 -webkit-transition: height 180ms ease;
1201 height: 100px;
1202 overflow: hidden;
1203 position: relative;
1204 }
1205
1206 .dialog-container:not([gdata-welcome='header']) .gdata-welcome.header {
1207 height: 0;
1208 }
1209
1210 .gdata-welcome.header .gdata-welcome-wrapper {
1211 -webkit-box-orient: horizontal;
1212 background-size: 308px 100px;
1213 border-top: 1px solid #d4d4d4;
1214 bottom: 0;
1215 display: -webkit-box;
1216 left: 0;
1217 position: absolute;
1218 right: 0;
1219 top: 0;
1220 }
1221
1222 .gdata-welcome.header .gdata-welcome-icon {
1223 background-position: center 20px;
1224 background-size: 51px 44px;
1225 width: 120px;
1226 }
1227
1228 .gdata-welcome.header .gdata-welcome-message {
1229 -webkit-box-flex: 1;
1230 -webkit-box-orient: vertical;
1231 display: -webkit-box;
1232 }
1233
1234 .gdata-welcome.header .gdata-welcome-title {
1235 font-size: 140%;
1236 margin-bottom: 8px;
1237 margin-top: 16px;
1238 }
1239
1240 .gdata-welcome.header .gdata-welcome-text {
1241 margin-bottom: 8px;
1242 }
1243
1244 .gdata-welcome.header .gdata-welcome-dismiss {
1245 display: none;
1246 }
1247
1248 /* Full page welcome banner. */
1249 .gdata-welcome.page {
1250 bottom: 0;
1251 left: 0;
1252 position: absolute;
1253 right: 0;
1254 top: 28px; /* Leave room for the file list header. */
1255 }
1256
1257 .dialog-container:not([gdata-welcome='page']) .gdata-welcome.page {
1258 display: none;
1259 }
1260
1261 .gdata-welcome.page .gdata-welcome-wrapper {
1262 background-position: 0 50px;
1263 background-size: 520px 173px;
1264 border: 2px solid rgb(186, 210, 231);
1265 border-radius: 4px;
1266 bottom: 0;
1267 font-size: 120%;
1268 left: 0;
1269 margin: 16px;
1270 overflow: hidden;
1271 position: absolute;
1272 right: 0;
1273 top: 0;
1274 }
1275
1276 .gdata-welcome.page .gdata-welcome-icon {
1277 background-position: center center;
1278 height: 240px;
1279 left: 0;
1280 right: 0;
1281 top: 0;
1282 }
1283
1284 .gdata-welcome.page .gdata-welcome-message {
1285 padding-left: 30%;
1286 padding-right: 25%;
1287 }
1288
1289 .gdata-welcome.page .gdata-welcome-title {
1290 font-size: 133%;
1291 margin-bottom: 30px;
1292 }
1293
1294 .gdata-welcome.page .gdata-welcome-text {
1295 margin-bottom: 24px;
1296 }
1297
1298 .gdata-welcome.page .gdata-welcome-dismiss {
1299 margin-left: 20px;
1300 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/component_extension_resources.grd ('k') | chrome/browser/resources/file_manager/images/clouds.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698