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

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

Issue 451123002: Remove transparency from the bottom bar. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | no next file » | 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) 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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698