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

Side by Side Diff: chrome/browser/resources/ntp4/footer_menu.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 .footer-menu-button { 5 .footer-menu-button {
6 -webkit-appearance: none; 6 -webkit-appearance: none;
7 -webkit-padding-end: 15px; 7 -webkit-padding-end: 15px;
8 -webkit-padding-start: 9px; 8 -webkit-padding-start: 9px;
9 -webkit-transition: opacity 200ms; 9 -webkit-transition: opacity 200ms;
10 -webkit-transition-delay: 100ms; 10 -webkit-transition-delay: 100ms;
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 margin-top: 0.25em; 119 margin-top: 0.25em;
120 } 120 }
121 121
122 /* Used to add additional details to a section header */ 122 /* Used to add additional details to a section header */
123 .footer-menu section h3 .details { 123 .footer-menu section h3 .details {
124 color: rgb(151, 156, 160); 124 color: rgb(151, 156, 160);
125 font-style: italic; 125 font-style: italic;
126 font-weight: normal; 126 font-weight: normal;
127 } 127 }
128 128
129 .footer-menu section h3 .details:before { 129 .footer-menu section h3 .details::before {
130 content: '\2013'; /* En-dash character. */ 130 content: '\2013'; /* En-dash character. */
131 margin: 0 0.5em; 131 margin: 0 0.5em;
132 } 132 }
133 133
134 html[dir='rtl'] .footer-menu-item { 134 html[dir='rtl'] .footer-menu-item {
135 background: no-repeat 100% 50%; 135 background: no-repeat 100% 50%;
136 } 136 }
137 137
138 .recent-window { 138 .recent-window {
139 background-image: url('images/closed_window.png'); 139 background-image: url('images/closed_window.png');
(...skipping 18 matching lines...) Expand all
158 .footer-menu-context-menu { 158 .footer-menu-context-menu {
159 /* Needs to be above .footer-menu. */ 159 /* Needs to be above .footer-menu. */
160 z-index: 11; 160 z-index: 11;
161 } 161 }
162 162
163 .footer-menu hr { 163 .footer-menu hr {
164 background-color: rgb(217, 217, 217); 164 background-color: rgb(217, 217, 217);
165 border: 0; 165 border: 0;
166 height: 1px; 166 height: 1px;
167 } 167 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698