| Index: ui/file_manager/file_manager/foreground/js/ui/file_grid.js
|
| diff --git a/ui/file_manager/file_manager/foreground/js/ui/file_grid.js b/ui/file_manager/file_manager/foreground/js/ui/file_grid.js
|
| index a2eecf712b31ccce00b0d03317d085e4d4f7267c..45383061574d1fa098a5ba561f7c8f297cba3256 100644
|
| --- a/ui/file_manager/file_manager/foreground/js/ui/file_grid.js
|
| +++ b/ui/file_manager/file_manager/foreground/js/ui/file_grid.js
|
| @@ -212,9 +212,12 @@ FileGrid.decorateThumbnail_ = function(
|
| }
|
| frame.appendChild(box);
|
|
|
| - var checkmark = li.ownerDocument.createElement('div');
|
| - checkmark.className = 'checkmark';
|
| - frame.appendChild(checkmark);
|
| + var active_checkmark = li.ownerDocument.createElement('div');
|
| + active_checkmark.className = 'checkmark active';
|
| + frame.appendChild(active_checkmark);
|
| + var inactive_checkmark = li.ownerDocument.createElement('div');
|
| + inactive_checkmark.className = 'checkmark inactive';
|
| + frame.appendChild(inactive_checkmark);
|
|
|
| var bottom = li.ownerDocument.createElement('div');
|
| bottom.className = 'thumbnail-bottom';
|
|
|