OLD | NEW |
1 <!-- | 1 <!-- |
2 -- Copyright 2014 The Chromium Authors. All rights reserved. | 2 -- Copyright 2014 The Chromium Authors. All rights reserved. |
3 -- Use of this source code is governed by a BSD-style license that can be | 3 -- Use of this source code is governed by a BSD-style license that can be |
4 -- found in the LICENSE file. | 4 -- found in the LICENSE file. |
5 --> | 5 --> |
6 <html i18n-values="dir:textdirection"> | 6 <html i18n-values="dir:textdirection"> |
7 <head> | 7 <head> |
8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
9 <link rel="stylesheet" href="../file_manager/foreground/css/list.css"> | 9 <link rel="stylesheet" href="../file_manager/foreground/css/list.css"> |
10 <link rel="stylesheet" href="../file_manager/foreground/css/common.css"> | 10 <link rel="stylesheet" href="../file_manager/foreground/css/common.css"> |
(...skipping 28 matching lines...) Expand all Loading... |
39 } | 39 } |
40 </style> | 40 </style> |
41 </head> | 41 </head> |
42 <body> | 42 <body> |
43 <div class="gallery"> | 43 <div class="gallery"> |
44 <div id="content" class="content"> | 44 <div id="content" class="content"> |
45 <div class="thumbnail-view"></div> | 45 <div class="thumbnail-view"></div> |
46 </div> | 46 </div> |
47 <div id="top-toolbar" class="toolbar top tool dimmable"> | 47 <div id="top-toolbar" class="toolbar top tool dimmable"> |
48 <div class="filename-spacer"> | 48 <div class="filename-spacer"> |
49 <paper-input no-label-float spellcheck="false"></paper-input> | 49 <!-- Change this to use paper-input after ChromeVox supports shadow DOM.
--> |
| 50 <paper-input-container id="rename-input" no-label-float> |
| 51 <input spellcheck="false"></input> |
| 52 </paper-input-container> |
50 </div> | 53 </div> |
51 <div class="button-spacer"> | 54 <div class="button-spacer"> |
52 <!-- Use button element for edit button to implement toggle button with | 55 <!-- Use button element for edit button to implement toggle button with |
53 -- custom ripple effect. --> | 56 -- custom ripple effect. --> |
54 <button class="edit" i18n-values="title:GALLERY_EDIT"> | 57 <button class="edit" i18n-values="title:GALLERY_EDIT"> |
55 <div class="icon"></div> | 58 <div class="icon"></div> |
56 <files-toggle-ripple></files-toggle-ripple> | 59 <files-toggle-ripple></files-toggle-ripple> |
57 </button> | 60 </button> |
58 <paper-button class="print" i18n-values="title:GALLERY_PRINT" disabled><
/paper-button> | 61 <paper-button class="print" i18n-values="title:GALLERY_PRINT" disabled><
/paper-button> |
59 <paper-button class="delete" i18n-values="title:GALLERY_DELETE"></paper-
button> | 62 <paper-button class="delete" i18n-values="title:GALLERY_DELETE"></paper-
button> |
(...skipping 21 matching lines...) Expand all Loading... |
81 </div> | 84 </div> |
82 <div class="prompt-wrapper" pos="center"> | 85 <div class="prompt-wrapper" pos="center"> |
83 <div class="error-banner"></div> | 86 <div class="error-banner"></div> |
84 </div> | 87 </div> |
85 <div class="toast-stage"> | 88 <div class="toast-stage"> |
86 <files-toast></files-toast> | 89 <files-toast></files-toast> |
87 </div> | 90 </div> |
88 </div> | 91 </div> |
89 </body> | 92 </body> |
90 </html> | 93 </html> |
OLD | NEW |