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

Side by Side Diff: chrome/browser/resources/bookmark_manager/css/bmm.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 body { 6 body {
7 cursor: default; 7 cursor: default;
8 height: 100%; 8 height: 100%;
9 margin: 0; 9 margin: 0;
10 overflow: hidden; 10 overflow: hidden;
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 background-position: 100% 50%; 69 background-position: 100% 50%;
70 } 70 }
71 71
72 list > .folder > .label { 72 list > .folder > .label {
73 background-image: -webkit-image-set( 73 background-image: -webkit-image-set(
74 url('../../../../../ui/resources/default_100_percent/common/folder_closed. png') 1x, 74 url('../../../../../ui/resources/default_100_percent/common/folder_closed. png') 1x,
75 url('../../../../../ui/resources/default_200_percent/common/folder_closed. png') 2x); 75 url('../../../../../ui/resources/default_200_percent/common/folder_closed. png') 2x);
76 } 76 }
77 77
78 /* We need to ensure that even empty labels take up space */ 78 /* We need to ensure that even empty labels take up space */
79 list > * > .label:empty:after, 79 list > * > .label:empty::after,
80 list > * > .url:empty:after { 80 list > * > .url:empty::after {
81 content: ' '; 81 content: ' ';
82 white-space: pre; 82 white-space: pre;
83 } 83 }
84 84
85 list > .folder > .url:empty:after { 85 list > .folder > .url:empty::after {
86 content: ''; 86 content: '';
87 } 87 }
88 88
89 list > * > button { 89 list > * > button {
90 -webkit-transition: opacity 150ms; 90 -webkit-transition: opacity 150ms;
91 background: #fff -webkit-canvas(drop-down-arrow) no-repeat center center; 91 background: #fff -webkit-canvas(drop-down-arrow) no-repeat center center;
92 border: 1px solid hsl(214, 91%, 85%); 92 border: 1px solid hsl(214, 91%, 85%);
93 border-radius: 3px; 93 border-radius: 3px;
94 bottom: 1px; 94 bottom: 1px;
95 display: none; 95 display: none;
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 337
338 list [editing] input, 338 list [editing] input,
339 .tree-item [editing] input { 339 .tree-item [editing] input {
340 padding: 3px 0; 340 padding: 3px 0;
341 } 341 }
342 342
343 .tree-row .expand-icon { 343 .tree-row .expand-icon {
344 top: 6px; 344 top: 6px;
345 } 345 }
346 } 346 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/about_credits.tmpl ('k') | chrome/browser/resources/chromeos/about_os_credits.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698