OLD | NEW |
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 | 5 |
6 #editing-controls { | 6 #editing-controls { |
7 margin-top: 16px; | 7 margin-top: 16px; |
8 white-space: nowrap; | 8 white-space: nowrap; |
9 } | 9 } |
10 | 10 |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 /* Make room for the favicon. */ | 178 /* Make room for the favicon. */ |
179 -webkit-padding-start: 20px; | 179 -webkit-padding-start: 20px; |
180 | 180 |
181 /* Control the favicon appearance. */ | 181 /* Control the favicon appearance. */ |
182 background-position-y: 3px; | 182 background-position-y: 3px; |
183 background-repeat: no-repeat; | 183 background-repeat: no-repeat; |
184 } | 184 } |
185 | 185 |
186 .entry .starred { | 186 .entry .starred { |
187 -webkit-margin-start: 4px; | 187 -webkit-margin-start: 4px; |
188 background: url('shared/images/star_small.png') no-repeat; | 188 background: url('../shared/images/star_small.png') no-repeat; |
189 display: inline-block; | 189 display: inline-block; |
190 height: 11px; | 190 height: 11px; |
191 width: 11px; | 191 width: 11px; |
192 } | 192 } |
193 | 193 |
194 .entry .title > a { | 194 .entry .title > a { |
195 color: rgb(48, 57, 66); | 195 color: rgb(48, 57, 66); |
196 text-decoration: none; | 196 text-decoration: none; |
197 } | 197 } |
198 | 198 |
199 .entry .title > a.to-be-removed { | 199 .entry .title > a.to-be-removed { |
200 text-decoration: line-through; | 200 text-decoration: line-through; |
201 } | 201 } |
202 | 202 |
203 .entry .title > a:hover { | 203 .entry .title > a:hover { |
204 text-decoration: underline; | 204 text-decoration: underline; |
205 } | 205 } |
206 | 206 |
207 .fade-out { | 207 .fade-out { |
208 -webkit-transition: opacity 200ms; | 208 -webkit-transition: opacity 200ms; |
209 opacity: 0; | 209 opacity: 0; |
210 } | 210 } |
211 | 211 |
212 .page-navigation { | 212 .page-navigation { |
213 -webkit-margin-end: 4px; | 213 -webkit-margin-end: 4px; |
214 background-color: rgb(235, 239, 249); | 214 background-color: rgb(235, 239, 249); |
215 padding: 8px; | 215 padding: 8px; |
216 } | 216 } |
OLD | NEW |