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

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

Issue 2299493002: Add an ability for resize in gallery. (Closed)
Patch Set: 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 } 47 }
48 paper-slider { 48 paper-slider {
49 --paper-slider-active-color: white; 49 --paper-slider-active-color: white;
50 --paper-slider-knob-color: white; 50 --paper-slider-knob-color: white;
51 --paper-slider-secondary-color: transparent; 51 --paper-slider-secondary-color: transparent;
52 } 52 }
53 paper-progress { 53 paper-progress {
54 --paper-progress-container-color: rgba(0, 0, 0, 0.3); 54 --paper-progress-container-color: rgba(0, 0, 0, 0.3);
55 --paper-progress-active-color: #1AC222; 55 --paper-progress-active-color: #1AC222;
56 } 56 }
57 .edit-modal paper-input {
58 --paper-input-container-input-color: white;
59 }
57 </style> 60 </style>
58 </head> 61 </head>
59 <body> 62 <body>
60 <div class="gallery"> 63 <div class="gallery">
61 <div id="content" class="content"> 64 <div id="content" class="content">
62 <div class="thumbnail-view"></div> 65 <div class="thumbnail-view"></div>
63 </div> 66 </div>
64 <div id="top-toolbar" class="toolbar top tool dimmable"> 67 <div id="top-toolbar" class="toolbar top tool dimmable">
65 <div class="filename-spacer"> 68 <div class="filename-spacer">
66 <!-- Change this to use paper-input after ChromeVox supports shadow DOM. --> 69 <!-- Change this to use paper-input after ChromeVox supports shadow DOM. -->
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 <div class="prompt-wrapper" pos="center"> 146 <div class="prompt-wrapper" pos="center">
144 <div class="error-banner"></div> 147 <div class="error-banner"></div>
145 </div> 148 </div>
146 <div class="toast-stage"> 149 <div class="toast-stage">
147 <files-toast></files-toast> 150 <files-toast></files-toast>
148 </div> 151 </div>
149 <files-tooltip></files-tooltip> 152 <files-tooltip></files-tooltip>
150 </div> 153 </div>
151 </body> 154 </body>
152 </html> 155 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698