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

Side by Side Diff: chrome/browser/resources/task_manager/task_manager.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 { 5 html {
6 overflow: hidden; 6 overflow: hidden;
7 } 7 }
8 8
9 /* Outer frame of the dialog. */ 9 /* Outer frame of the dialog. */
10 body { 10 body {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 -webkit-box-flex: 1; 61 -webkit-box-flex: 1;
62 } 62 }
63 63
64 /* Title Column text containers. */ 64 /* Title Column text containers. */
65 .detail-title { 65 .detail-title {
66 display: -webkit-box; 66 display: -webkit-box;
67 height: 20px; 67 height: 20px;
68 } 68 }
69 69
70 /* Bullets on the left of row. */ 70 /* Bullets on the left of row. */
71 .table-row > .table-row-cell:first-child:before { 71 .table-row > .table-row-cell:first-child::before {
72 -webkit-border-radius: 3px; 72 -webkit-border-radius: 3px;
73 background: #ccc; 73 background: #ccc;
74 content: ''; 74 content: '';
75 display: block; 75 display: block;
76 margin: 7px 4px 7px 7px; 76 margin: 7px 4px 7px 7px;
77 width: 6px; 77 width: 6px;
78 } 78 }
79 79
80 .table-background-row { 80 .table-background-row {
81 background-color: hsl(34, 91%, 87%); 81 background-color: hsl(34, 91%, 87%);
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 142
143 /* Container for the ok/cancel buttons. */ 143 /* Container for the ok/cancel buttons. */
144 .footer-right-container { 144 .footer-right-container {
145 -webkit-box-flex: 1; 145 -webkit-box-flex: 1;
146 text-align: right; 146 text-align: right;
147 } 147 }
148 148
149 button { 149 button {
150 margin: 2px 0 2px 8px; 150 margin: 2px 0 2px 8px;
151 } 151 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/shared/css/tree.css ('k') | chrome/browser/resources/test_presubmit.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698