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