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

Side by Side Diff: ui/webui/resources/css/table.css

Issue 2621993006: Drop the -webkit prefix from user-select CSS rule in ui/. (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « ui/webui/resources/css/overlay.css ('k') | ui/webui/resources/css/tree.css » ('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 html.col-resize * { 5 html.col-resize * {
6 cursor: col-resize !important; 6 cursor: col-resize !important;
7 } 7 }
8 8
9 .table[has-element-focus] > list > [lead] { 9 .table[has-element-focus] > list > [lead] {
10 border-color: hsl(214, 91%, 65%); 10 border-color: hsl(214, 91%, 65%);
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 white-space: nowrap; 56 white-space: nowrap;
57 } 57 }
58 58
59 .table-header { 59 .table-header {
60 background-color: rgb(220, 220, 220); 60 background-color: rgb(220, 220, 220);
61 overflow: hidden; 61 overflow: hidden;
62 position: relative; 62 position: relative;
63 } 63 }
64 64
65 .table-header-inner { 65 .table-header-inner {
66 -webkit-user-select: none;
67 cursor: default; 66 cursor: default;
68 display: -webkit-box; 67 display: -webkit-box;
69 position: relative; 68 position: relative;
70 text-align: start; 69 text-align: start;
70 user-select: none;
71 } 71 }
72 72
73 .table-header-cell { 73 .table-header-cell {
74 font-weight: normal; 74 font-weight: normal;
75 overflow: hidden; 75 overflow: hidden;
76 text-overflow: ellipsis; 76 text-overflow: ellipsis;
77 white-space: nowrap; 77 white-space: nowrap;
78 } 78 }
79 79
80 .table-header-label { 80 .table-header-label {
(...skipping 26 matching lines...) Expand all
107 .table-header-splitter { 107 .table-header-splitter {
108 -webkit-margin-start: -1px; 108 -webkit-margin-start: -1px;
109 background-color: black; 109 background-color: black;
110 cursor: col-resize; 110 cursor: col-resize;
111 height: 100%; 111 height: 100%;
112 left: 0; 112 left: 0;
113 position: absolute; 113 position: absolute;
114 top: 0; 114 top: 0;
115 width: 5px; 115 width: 5px;
116 } 116 }
OLDNEW
« no previous file with comments | « ui/webui/resources/css/overlay.css ('k') | ui/webui/resources/css/tree.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698