OLD | NEW |
1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2014 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 * - -1: text-measure |
7 * - 2: drag-selection-border | 7 * - 2: drag-selection-border |
8 * - 3: preview-panel | 8 * - 3: preview-panel |
9 * - 500: scrollbar | 9 * - 500: scrollbar |
10 * - 500: splitter | 10 * - 500: splitter |
(...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
940 | 940 |
941 /* The cr.ui.Table representing the detailed file list. */ | 941 /* The cr.ui.Table representing the detailed file list. */ |
942 .detail-table { | 942 .detail-table { |
943 width: 100%; | 943 width: 100%; |
944 } | 944 } |
945 | 945 |
946 /* Bottom pane describing current selection. */ | 946 /* Bottom pane describing current selection. */ |
947 .preview-panel { | 947 .preview-panel { |
948 -webkit-transition: background-color 150ms ease; | 948 -webkit-transition: background-color 150ms ease; |
949 align-items: center; | 949 align-items: center; |
950 background: linear-gradient( | 950 background: white; |
951 to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1)); | |
952 border-top: 1px solid rgba(20, 20, 22, 0.1); | 951 border-top: 1px solid rgba(20, 20, 22, 0.1); |
953 bottom: 0; | 952 bottom: 0; |
954 display: flex; | 953 display: flex; |
955 flex-direction: row; | 954 flex-direction: row; |
956 height: 51px; | 955 height: 51px; |
957 left: 0; | 956 left: 0; |
958 opacity: 1; | 957 opacity: 1; |
959 padding: 0 10px 0 7px; | 958 padding: 0 10px 0 7px; |
960 position: absolute; | 959 position: absolute; |
961 right: 0; | 960 right: 0; |
(...skipping 973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1935 visibility: hidden; | 1934 visibility: hidden; |
1936 } | 1935 } |
1937 | 1936 |
1938 .text-measure { | 1937 .text-measure { |
1939 pointer-events: none; | 1938 pointer-events: none; |
1940 position: absolute; | 1939 position: absolute; |
1941 top: 0; | 1940 top: 0; |
1942 visibility: hidden; | 1941 visibility: hidden; |
1943 z-index: -1; | 1942 z-index: -1; |
1944 } | 1943 } |
OLD | NEW |