Chromium Code Reviews| 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 19 matching lines...) Expand all Loading... | |
| 30 </style> | 30 </style> |
| 31 </head> | 31 </head> |
| 32 <body> | 32 <body> |
| 33 <div class="gallery"> | 33 <div class="gallery"> |
| 34 <div id="content" class="content"> | 34 <div id="content" class="content"> |
| 35 <div class="thumbnail-view"></div> | 35 <div class="thumbnail-view"></div> |
| 36 </div> | 36 </div> |
| 37 <div id="top-toolbar" class="toolbar top tool dimmable"> | 37 <div id="top-toolbar" class="toolbar top tool dimmable"> |
| 38 <div class="filename-spacer"></div> | 38 <div class="filename-spacer"></div> |
| 39 <div class="button-spacer"> | 39 <div class="button-spacer"> |
| 40 <paper-button class="button edit" i18n-values="title:GALLERY_EDIT" disab led></paper-button> | 40 <button class="toggle edit" i18n-values="title:GALLERY_EDIT"> |
|
yawano
2015/07/28 02:20:28
While this will be preference, is it recommended t
hirono
2015/07/28 04:53:36
It's fine to remove class. Sorry for confusion. My
yawano
2015/07/28 06:41:47
Done.
| |
| 41 <paper-button class="button print" i18n-values="title:GALLERY_PRINT" dis abled></paper-button> | 41 <div class="icon"></div> |
| 42 <paper-button class="button delete" i18n-values="title:GALLERY_DELETE">< /paper-button> | 42 <files-toggle-ripple></files-toggle-ripple> |
| 43 <paper-button class="button slide-mode" i18n-values="title:GALLERY_SLIDE "></paper-button> | 43 </button> |
| 44 <paper-button class="button thumbnail-mode" i18n-values="title:GALLERY_T HUMBNAIL"></paper-button> | 44 <paper-button class="print" i18n-values="title:GALLERY_PRINT" disabled>< /paper-button> |
| 45 <paper-button class="button slideshow" i18n-values="title:GALLERY_SLIDES HOW"></paper-button> | 45 <paper-button class="delete" i18n-values="title:GALLERY_DELETE"></paper- button> |
| 46 <paper-button class="button share" i18n-values="title:GALLERY_SHARE"></p aper-button> | 46 <paper-button class="slide-mode" i18n-values="title:GALLERY_SLIDE"></pap er-button> |
| 47 <paper-button class="thumbnail-mode" i18n-values="title:GALLERY_THUMBNAI L"></paper-button> | |
| 48 <paper-button class="slideshow" i18n-values="title:GALLERY_SLIDESHOW"></ paper-button> | |
| 49 <paper-button class="share" i18n-values="title:GALLERY_SHARE"></paper-bu tton> | |
| 47 </div> | 50 </div> |
| 48 </div> | 51 </div> |
| 49 <div id="bottom-toolbar" class="toolbar bottom tool dimmable"> | 52 <div id="bottom-toolbar" class="toolbar bottom tool dimmable"> |
| 50 <div class="slide-mode-toolbar"> | 53 <div class="slide-mode-toolbar"> |
| 51 <div class="ribbon-spacer"></div> | 54 <div class="ribbon-spacer"></div> |
| 52 </div> | 55 </div> |
| 53 | 56 |
| 54 <div class="edit-mode-toolbar"> | 57 <div class="edit-mode-toolbar"> |
| 55 <div class="options"> | 58 <div class="options"> |
| 56 <!-- TODO(yawano): Replace overwrite original checkbox with undo toast . --> | 59 <!-- TODO(yawano): Replace overwrite original checkbox with undo toast . --> |
| 57 <div class="overwrite-original"> | 60 <div class="overwrite-original"> |
| 58 <input id="overwrite-checkbox" type="checkbox"></input> | 61 <input id="overwrite-checkbox" type="checkbox"></input> |
| 59 <div class="label" for="overwrite-checkbox" i18n-content="GALLERY_OV ERWRITE_ORIGINAL"></div> | 62 <div class="label" for="overwrite-checkbox" i18n-content="GALLERY_OV ERWRITE_ORIGINAL"></div> |
| 60 </div> | 63 </div> |
| 61 <div class="saved" i18n-content="GALLERY_SAVED"></div> | 64 <div class="saved" i18n-content="GALLERY_SAVED"></div> |
| 62 </div> | 65 </div> |
| 63 <div class="edit-bar-spacer"></div> | 66 <div class="edit-bar-spacer"></div> |
| 64 </div> | 67 </div> |
| 65 </div> | 68 </div> |
| 66 <div class="prompt-wrapper" pos="center"> | 69 <div class="prompt-wrapper" pos="center"> |
| 67 <div class="error-banner"></div> | 70 <div class="error-banner"></div> |
| 68 </div> | 71 </div> |
| 69 </div> | 72 </div> |
| 70 </body> | 73 </body> |
| 71 </html> | 74 </html> |
| OLD | NEW |