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

Side by Side Diff: chrome/browser/resources/file_manager/harness.html

Issue 10258011: [File Manager] Better Google Drive promo layout in Open/Save dialogs (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
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. 3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved.
4 -- Use of this source code is governed by a BSD-style license that can be 4 -- Use of this source code is governed by a BSD-style license that can be
5 -- found in the LICENSE file. 5 -- found in the LICENSE file.
6 --> 6 -->
7 <html> 7 <html>
8 <head> 8 <head>
9 <style> 9 <style>
10 body { 10 body {
11 font-family: sans-serif; 11 font-family: sans-serif;
12 } 12 }
13 13
14 #screen { 14 #screen {
15 position: relative; 15 position: relative;
16 width: 800px; 16 width: 1034px;
17 height: 620px; 17 height: 680px;
18 18
19 background-image: -webkit-linear-gradient(top, #c6c6c6, #888); 19 background-image: -webkit-linear-gradient(top, #c6c6c6, #888);
20 } 20 }
21 21
22 #dialog { 22 #dialog {
23 position: absolute; 23 position: absolute;
24 left: 40px; 24 left: 40px;
25 top: 20px; 25 top: 20px;
26 width: 720px; 26 width: 954px;
27 height: 580px; 27 height: 640px;
28 border-radius: 4px;
29 border: none; 28 border: none;
30 -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 1); 29 -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
31 background-color: white; 30 background-color: white;
32 } 31 }
33 32
34 #default-path { 33 #default-path {
35 width: 20em; 34 width: 20em;
36 } 35 }
37 </style> 36 </style>
38 37
(...skipping 13 matching lines...) Expand all
52 <a href='javascript:harness.changeParam("type", "open-multi-file")' 51 <a href='javascript:harness.changeParam("type", "open-multi-file")'
53 >Open Files</a> | 52 >Open Files</a> |
54 <a href='javascript:harness.changeParam("type", "folder")' 53 <a href='javascript:harness.changeParam("type", "folder")'
55 >Select Folder</a> ], 54 >Select Folder</a> ],
56 Default Path: <input id=default-path> 55 Default Path: <input id=default-path>
57 <a href='javascript:harness.changePath()'>Go</a> 56 <a href='javascript:harness.changePath()'>Go</a>
58 <div id=screen> 57 <div id=screen>
59 <iframe id=dialog></iframe> 58 <iframe id=dialog></iframe>
60 </div> 59 </div>
61 <div> 60 <div>
61 Add Files:
62 <input type='file' multiple onchange='harness.onFilesChange(event)'>
62 <button onclick='harness.onClearClick(event)'>Reset Filesystem</button> 63 <button onclick='harness.onClearClick(event)'>Reset Filesystem</button>
63 | Add Files:
64 <input type='file' multiple onchange='harness.onFilesChange(event)'>
65 </div> 64 </div>
66 65
67 <script>harness.init()</script> 66 <script>harness.init()</script>
68 </body> 67 </body>
69 </html> 68 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/css/gdrive_welcome.css ('k') | chrome/browser/resources/file_manager/js/file_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698