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

Side by Side Diff: ui/file_manager/gallery/gallery.html

Issue 1275323002: Gallery: replace paper-input of rename field with HTMLInputElement. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « ui/file_manager/gallery/css/gallery.css ('k') | ui/file_manager/gallery/js/gallery.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « ui/file_manager/gallery/css/gallery.css ('k') | ui/file_manager/gallery/js/gallery.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698