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

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

Issue 2299493002: Add an ability for resize in gallery. (Closed)
Patch Set: Make a change in GalleryJsTest.SlideModeTest Created 4 years, 3 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
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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 --paper-progress-active-color: #1AC222; 56 --paper-progress-active-color: #1AC222;
57 } 57 }
58 paper-button { 58 paper-button {
59 --paper-button-ink-color: black; 59 --paper-button-ink-color: black;
60 } 60 }
61 files-toggle-ripple { 61 files-toggle-ripple {
62 --files-toggle-ripple-activated: { 62 --files-toggle-ripple-activated: {
63 opacity: 0.4; 63 opacity: 0.4;
64 }; 64 };
65 } 65 }
66 .edit-modal paper-input {
67 --paper-input-container-focus-color: white;
68 --paper-input-container-underline-focus: {
69 height: 1px;
70 };
71 --paper-input-container: {
72 color: rgba(255, 255, 0, 0.54);
73 padding: 7px 0 8px 0;
74 };
75 --paper-input-container-input: {
76 color: white;
77 font-size: 13px;
78 padding: 0;
79 };
80 --paper-input-container-label: {
81 color: rgba(255, 255, 255, 0.54);
82 font-size: 16px;
83 };
84 --paper-font-caption: {
85 height: 17px;
86 };
87 }
66 </style> 88 </style>
67 </head> 89 </head>
68 <body> 90 <body>
69 <div class="gallery"> 91 <div class="gallery">
70 <div id="content" class="content"> 92 <div id="content" class="content">
71 <div class="thumbnail-view"></div> 93 <div class="thumbnail-view"></div>
72 </div> 94 </div>
73 <div id="top-toolbar" class="toolbar top tool dimmable"> 95 <div id="top-toolbar" class="toolbar top tool dimmable">
74 <div class="filename-spacer"> 96 <div class="filename-spacer">
75 <!-- Change this to use paper-input after ChromeVox supports shadow DOM. --> 97 <!-- Change this to use paper-input after ChromeVox supports shadow DOM. -->
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 <div class="prompt-wrapper" pos="center"> 174 <div class="prompt-wrapper" pos="center">
153 <div class="error-banner"></div> 175 <div class="error-banner"></div>
154 </div> 176 </div>
155 <div class="toast-stage"> 177 <div class="toast-stage">
156 <files-toast></files-toast> 178 <files-toast></files-toast>
157 </div> 179 </div>
158 <files-tooltip></files-tooltip> 180 <files-tooltip></files-tooltip>
159 </div> 181 </div>
160 </body> 182 </body>
161 </html> 183 </html>
OLDNEW
« no previous file with comments | « ui/file_manager/gallery/css/gallery.css ('k') | ui/file_manager/gallery/images/100/ratio_locked.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698