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

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

Issue 419063004: Files.app: Move the position of dummy element for measuring the size of text. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed. Created 6 years, 4 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 | ui/file_manager/file_manager/foreground/js/text_measure.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 /* The order of z-index: 5 /* The order of z-index:
6 * - -1: text-measure
6 * - 2: drag-selection-border 7 * - 2: drag-selection-border
7 * - 3: preview-panel 8 * - 3: preview-panel
8 * - 500: scrollbar 9 * - 500: scrollbar
9 * - 500: splitter 10 * - 500: splitter
10 * - 525: spinner 11 * - 525: spinner
11 * - 550: autocomplete-suggestions 12 * - 550: autocomplete-suggestions
12 * - 600: menus 13 * - 600: menus
13 * - 600: tooltip 14 * - 600: tooltip
14 * - 1000: preview thumbnail popup 15 * - 1000: preview thumbnail popup
15 * - 1000: overlay panel (ie. image editor) 16 * - 1000: overlay panel (ie. image editor)
(...skipping 1941 matching lines...) Expand 10 before | Expand all | Expand 10 after
1957 display: none; 1958 display: none;
1958 } 1959 }
1959 1960
1960 #progress-center-close-view.single button.open { 1961 #progress-center-close-view.single button.open {
1961 display: none; 1962 display: none;
1962 } 1963 }
1963 1964
1964 #progress-center li:not(.cancelable) button.cancel { 1965 #progress-center li:not(.cancelable) button.cancel {
1965 visibility: hidden; 1966 visibility: hidden;
1966 } 1967 }
1968
1969 .text-measure {
1970 pointer-events: none;
1971 position: absolute;
1972 top: 0;
1973 visibility: hidden;
1974 z-index: -1;
1975 }
OLDNEW
« no previous file with comments | « no previous file | ui/file_manager/file_manager/foreground/js/text_measure.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698