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

Side by Side Diff: chrome/browser/resources/file_manager/css/file_manager.css

Issue 10108017: Prevent dragging in open/save dialogs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/file_transfer_controller.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 /* Outer frame of the dialog. */ 5 /* Outer frame of the dialog. */
6 body { 6 body {
7 -webkit-box-flex: 1; 7 -webkit-box-flex: 1;
8 -webkit-box-orient: vertical; 8 -webkit-box-orient: vertical;
9 -webkit-transition: opacity 70ms linear; 9 -webkit-transition: opacity 70ms linear;
10 -webkit-user-select: none; 10 -webkit-user-select: none;
(...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 } 695 }
696 696
697 /* Text box used for renaming in the thumbnail list. */ 697 /* Text box used for renaming in the thumbnail list. */
698 .thumbnail-grid input.rename { 698 .thumbnail-grid input.rename {
699 -webkit-box-sizing: border-box; 699 -webkit-box-sizing: border-box;
700 -webkit-margin-start: -1px; 700 -webkit-margin-start: -1px;
701 height: 20px; 701 height: 20px;
702 width: 114px; 702 width: 114px;
703 } 703 }
704 704
705 .thumbnail-grid li,
706 .detail-table list li {
707 -webkit-user-drag: element;
708 }
709
710 /* The cr.ui.Table representing the detailed file list. */ 705 /* The cr.ui.Table representing the detailed file list. */
711 .detail-table { 706 .detail-table {
712 border: 0; 707 border: 0;
713 width: 100%; 708 width: 100%;
714 } 709 }
715 710
716 /* Bottom pane describing current selection. */ 711 /* Bottom pane describing current selection. */
717 .preview-panel { 712 .preview-panel {
718 -webkit-box-align: center; 713 -webkit-box-align: center;
719 -webkit-box-orient: horizontal; 714 -webkit-box-orient: horizontal;
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
1219 } 1214 }
1220 1215
1221 body[ash] .dialog-title, 1216 body[ash] .dialog-title,
1222 body[type='full-page'] [invisibleif='full-page'], 1217 body[type='full-page'] [invisibleif='full-page'],
1223 body:not([type='full-page']) [visibleif='full-page'], 1218 body:not([type='full-page']) [visibleif='full-page'],
1224 body:not([type='saveas-file']) [visibleif='saveas-file'], 1219 body:not([type='saveas-file']) [visibleif='saveas-file'],
1225 body:not([type='saveas-file']):not([type='full-page']) 1220 body:not([type='saveas-file']):not([type='full-page'])
1226 [visibleif='saveas-file full-page'] { 1221 [visibleif='saveas-file full-page'] {
1227 display: none; 1222 display: none;
1228 } 1223 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/file_transfer_controller.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698