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

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

Issue 247123002: Move Files.app files to ui/file_manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix the test failure on non-chromeos Created 6 years, 8 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
(Empty)
1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 /* Derived from /ui/webui/resources/css/table.css. */
6
7 html.col-resize * {
8 cursor: col-resize !important;
9 }
10
11 .table[hasElementFocus] > list > [lead] {
12 z-index: 2;
13 }
14
15 .table-row {
16 display: -webkit-box;
17 text-align: start;
18 width: 100%;
19 }
20
21 .table-row-cell {
22 display: -webkit-box;
23 overflow: hidden;
24 }
25
26 .table-row-cell > * {
27 overflow: hidden;
28 text-overflow: ellipsis;
29 white-space: nowrap;
30 }
31
32 .table-header {
33 overflow: hidden;
34 position: relative;
35 }
36
37 .table-header-inner {
38 -webkit-user-select: none;
39 cursor: default;
40 display: -webkit-box;
41 position: relative;
42 text-align: start;
43 }
44
45 .table-header-cell {
46 font-weight: normal;
47 overflow: hidden;
48 text-overflow: ellipsis;
49 white-space: nowrap;
50 }
51
52 .table-header-label {
53 overflow: hidden;
54 text-overflow: ellipsis;
55 white-space: nowrap;
56 }
57
58 .table-header-splitter {
59 cursor: col-resize;
60 height: 100%;
61 left: 0;
62 position: absolute;
63 top: 0;
64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698