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

Side by Side Diff: ui/file_manager/file_manager/foreground/css/file_manager.css

Issue 1170913006: Add material design toggle ripple element. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove changes to menu_button.js. Created 5 years, 6 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 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 /* Special attribute used in HTML to hide elements. */ 5 /* Special attribute used in HTML to hide elements. */
6 body[type='folder'] [invisibleif~='folder'], 6 body[type='folder'] [invisibleif~='folder'],
7 body[type='upload-folder'] [invisibleif~='upload-folder'], 7 body[type='upload-folder'] [invisibleif~='upload-folder'],
8 body[type='saveas-file'] [invisibleif~='saveas-file'], 8 body[type='saveas-file'] [invisibleif~='saveas-file'],
9 body[type='open-file'] [invisibleif~='open-file'], 9 body[type='open-file'] [invisibleif~='open-file'],
10 body[type='open-multi-file'] [invisibleif~='open-multi-file'], 10 body[type='open-multi-file'] [invisibleif~='open-multi-file'],
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 min-width: 0; 341 min-width: 0;
342 outline: none; 342 outline: none;
343 padding: 0; 343 padding: 0;
344 width: 32px; 344 width: 32px;
345 } 345 }
346 346
347 .dialog-header button.icon-button > iron-icon { 347 .dialog-header button.icon-button > iron-icon {
348 margin: 8px; 348 margin: 8px;
349 } 349 }
350 350
351 .dialog-header button.icon-button > files-toggle-ripple {
352 -webkit-margin-start: -7px;
353 height: 46px;
354 margin-top: -7px;
355 width: 46px;
356 }
357
351 #search-button { 358 #search-button {
352 background-image: -webkit-image-set( 359 background-image: -webkit-image-set(
353 url(../images/files/ui/search_white.png) 1x, 360 url(../images/files/ui/search_white.png) 1x,
354 url(../images/files/ui/2x/search_white.png) 2x); 361 url(../images/files/ui/2x/search_white.png) 2x);
355 } 362 }
356 363
357 body.check-select #search-button { 364 body.check-select #search-button {
358 background-image: -webkit-image-set( 365 background-image: -webkit-image-set(
359 url(../images/files/ui/search.png) 1x, 366 url(../images/files/ui/search.png) 1x,
360 url(../images/files/ui/2x/search.png) 2x); 367 url(../images/files/ui/2x/search.png) 2x);
(...skipping 1760 matching lines...) Expand 10 before | Expand all | Expand 10 after
2121 padding: 20px 15px; 2128 padding: 20px 15px;
2122 } 2129 }
2123 2130
2124 .text-measure { 2131 .text-measure {
2125 pointer-events: none; 2132 pointer-events: none;
2126 position: absolute; 2133 position: absolute;
2127 top: 0; 2134 top: 0;
2128 visibility: hidden; 2135 visibility: hidden;
2129 z-index: -1; 2136 z-index: -1;
2130 } 2137 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698