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

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

Issue 9565002: Fixing paste operation in File Browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2012 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 6
7 /* Outer frame of the dialog. */ 7 /* Outer frame of the dialog. */
8 body { 8 body {
9 -webkit-box-flex: 1; 9 -webkit-box-flex: 1;
10 -webkit-box-orient: vertical; 10 -webkit-box-orient: vertical;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 display: -webkit-box; 79 display: -webkit-box;
80 padding-left: 1em; 80 padding-left: 1em;
81 padding-right: 1em; 81 padding-right: 1em;
82 padding-top: 2px; 82 padding-top: 2px;
83 position: absolute; 83 position: absolute;
84 top: 1px; 84 top: 1px;
85 } 85 }
86 86
87 .butter-bar.before-show { 87 .butter-bar.before-show {
88 top: -30px; 88 top: -30px;
89 opacity: 0;
90 }
91
92 .butter-bar.after-show {
93 top: 50px;
94 opacity: 0;
89 } 95 }
90 96
91 .butter-bar .content { 97 .butter-bar .content {
92 padding-bottom: 8px; 98 padding-bottom: 8px;
93 padding-right: 5px; 99 padding-right: 5px;
94 } 100 }
95 101
96 .hide-in-butter { 102 .hide-in-butter {
97 display: none; 103 display: none;
98 } 104 }
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after
970 left: 0; 976 left: 0;
971 width: 100%; 977 width: 100%;
972 height: 100%; 978 height: 100%;
973 border: none; 979 border: none;
974 z-index: 100; 980 z-index: 100;
975 } 981 }
976 982
977 menu.file-context-menu { 983 menu.file-context-menu {
978 z-index: 4; 984 z-index: 4;
979 } 985 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698