OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |