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

Side by Side Diff: chrome/browser/resources/shared/css/table.css

Issue 11441008: [web_dev_style] Changing :pseudo-element to ::pseudo-element to match (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years 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
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[hasElementFocus] > list > [lead] { 9 .table[hasElementFocus] > list > [lead] {
10 border-color: hsl(214, 91%, 65%); 10 border-color: hsl(214, 91%, 65%);
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 margin: 0 7px; 81 margin: 0 7px;
82 overflow: hidden; 82 overflow: hidden;
83 text-overflow: ellipsis; 83 text-overflow: ellipsis;
84 white-space: nowrap; 84 white-space: nowrap;
85 } 85 }
86 86
87 .table-header-label > * { 87 .table-header-label > * {
88 padding: 0 12px; 88 padding: 0 12px;
89 } 89 }
90 90
91 .table-header-sort-image-desc:after { 91 .table-header-sort-image-desc::after {
92 -webkit-padding-start: 5px; 92 -webkit-padding-start: 5px;
93 color: #888; 93 color: #888;
94 content: '\25be'; /* BLACK DOWN-POINTING SMALL TRIANGLE */ 94 content: '\25be'; /* BLACK DOWN-POINTING SMALL TRIANGLE */
95 position: relative; 95 position: relative;
96 top: -2px; 96 top: -2px;
97 } 97 }
98 98
99 .table-header-sort-image-asc:after { 99 .table-header-sort-image-asc::after {
100 -webkit-padding-start: 5px; 100 -webkit-padding-start: 5px;
101 color: #888; 101 color: #888;
102 content: '\25b4'; /* BLACK UP-POINTING SMALL TRIANGLE */ 102 content: '\25b4'; /* BLACK UP-POINTING SMALL TRIANGLE */
103 position: relative; 103 position: relative;
104 top: -2px; 104 top: -2px;
105 } 105 }
106 106
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 | « chrome/browser/resources/shared/css/menu.css ('k') | chrome/browser/resources/shared/css/tree.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698