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

Side by Side Diff: chrome/browser/resources/performance_monitor/chart.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 /* "Performance" title */ 5 /* "Performance" title */
6 h1 { 6 h1 {
7 -webkit-margin-after: 1em; 7 -webkit-margin-after: 1em;
8 -webkit-margin-before: 21px; 8 -webkit-margin-before: 21px;
9 -webkit-margin-start: 23px; 9 -webkit-margin-start: 23px;
10 -webkit-user-select: none; 10 -webkit-user-select: none;
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 -webkit-margin-start: 23px; 63 -webkit-margin-start: 23px;
64 -webkit-user-select: none; 64 -webkit-user-select: none;
65 color: #777; 65 color: #777;
66 cursor: default; 66 cursor: default;
67 } 67 }
68 68
69 summary:focus { 69 summary:focus {
70 outline: 0; 70 outline: 0;
71 } 71 }
72 72
73 summary:after { 73 summary::after {
74 background: white; 74 background: white;
75 content: ''; 75 content: '';
76 height: 32px; 76 height: 32px;
77 left: 0; 77 left: 0;
78 margin-top: -23px; 78 margin-top: -23px;
79 position: absolute; 79 position: absolute;
80 width: 6px; 80 width: 6px;
81 } 81 }
82 82
83 summary:hover { 83 summary:hover {
84 color: rgb(70, 78, 90); 84 color: rgb(70, 78, 90);
85 } 85 }
86 86
87 details[open] summary:after { 87 details[open] summary::after {
88 background: #555; 88 background: #555;
89 } 89 }
90 90
91 details[open] summary { 91 details[open] summary {
92 color: #333; 92 color: #333;
93 } 93 }
94 94
95 details summary::-webkit-details-marker { 95 details summary::-webkit-details-marker {
96 display: none; 96 display: none;
97 } 97 }
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 margin: 0 1px 0 0; 199 margin: 0 1px 0 0;
200 min-width: 4em; 200 min-width: 4em;
201 text-shadow: #F0F0F0 0 1px 0; 201 text-shadow: #F0F0F0 0 1px 0;
202 } 202 }
203 203
204 button:active { 204 button:active {
205 background-image: -webkit-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7); 205 background-image: -webkit-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7);
206 box-shadow: none; 206 box-shadow: none;
207 text-shadow: none; 207 text-shadow: none;
208 } 208 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/search_page.css ('k') | chrome/browser/resources/shared/css/about_version.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698