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

Side by Side Diff: chrome/browser/resources/history/history.css

Issue 12218058: History: Use images instead of unicode characters. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use link-buttons Created 7 years, 10 months 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 body:not(.uber-frame) { 5 body:not(.uber-frame) {
6 color: rgb(48, 57, 66); 6 color: rgb(48, 57, 66);
7 margin: 0 8px 0 8px; 7 margin: 0 8px 0 8px;
8 } 8 }
9 9
10 #editing-controls, 10 #editing-controls,
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 .entry-box:hover input[type=checkbox], 229 .entry-box:hover input[type=checkbox],
230 .entry-box input[type=checkbox]:focus { 230 .entry-box input[type=checkbox]:focus {
231 opacity: 1; 231 opacity: 1;
232 } 232 }
233 233
234 .entry-box input[type=checkbox]:focus { 234 .entry-box input[type=checkbox]:focus {
235 -webkit-transition: opacity 150ms; 235 -webkit-transition: opacity 150ms;
236 } 236 }
237 </if> 237 </if>
238 238
239 #range-previous img {
240 -webkit-transform: rotate(180deg);
241 }
242
239 .entry-box { 243 .entry-box {
240 background-color: none; 244 background-color: none;
241 } 245 }
242 246
243 .entry-box:hover, 247 .entry-box:hover,
244 .entry-box.contains-focus { 248 .entry-box.contains-focus {
245 background-color: rgb(252, 252, 252); 249 background-color: rgb(252, 252, 252);
246 border-radius: 2px; 250 border-radius: 2px;
247 } 251 }
248 252
249 .entry .title { 253 .entry .title {
250 -webkit-box-flex: 1; 254 -webkit-box-flex: 1;
251 overflow: hidden; 255 overflow: hidden;
252 text-overflow: ellipsis; 256 text-overflow: ellipsis;
253 white-space: nowrap; 257 white-space: nowrap;
254 } 258 }
255 259
256 .day-results > .entry .title, 260 .day-results > .entry .title,
257 .search-results > .entry .title, 261 .search-results > .entry .title,
258 .site-domain { 262 .site-domain {
259 /* Make room for the favicon. */ 263 /* Make room for the favicon. */
260 -webkit-padding-start: 20px; 264 -webkit-padding-start: 20px;
261 265
262 /* Control the favicon appearance. */ 266 /* Control the favicon appearance. */
263 background-position-y: 3px; 267 background-position-y: 3px;
264 background-repeat: no-repeat; 268 background-repeat: no-repeat;
265 background-size: 16px; 269 background-size: 16px;
266 } 270 }
267 271
272 .site-domain a {
273 color: black;
Patrick Dubroy 2013/02/08 18:42:26 Shouldn't this be rgb(48, 57, 66), like the other
Sergiu 2013/02/11 19:19:34 Done.
274 text-decoration: none;
Patrick Dubroy 2013/02/08 18:42:26 I think it should be decorated like a regular link
Sergiu 2013/02/11 19:19:34 This should have been removed when using link-butt
275 }
276
268 .site-domain-arrow { 277 .site-domain-arrow {
269 -webkit-transition: -webkit-transform 300ms linear; 278 -webkit-transition: -webkit-transform 300ms linear;
279 background: url('../triangle_small_right.png') no-repeat;
280 background-position: 5px 5px;
270 color: #8F8F8F; 281 color: #8F8F8F;
271 height: 21px; 282 height: 21px;
272 margin-right: 2px; 283 margin-right: 2px;
273 text-align: center; 284 text-align: center;
274 width: 21px; 285 width: 21px;
275 } 286 }
276 287
277 .site-domain-arrow.collapse { 288 .site-domain-arrow.collapse {
278 -webkit-transform: rotate(0); 289 -webkit-transform: rotate(0);
279 } 290 }
(...skipping 30 matching lines...) Expand all
310 321
311 .menu-button.drop-down { 322 .menu-button.drop-down {
312 position: relative; 323 position: relative;
313 top: 2px; 324 top: 2px;
314 } 325 }
315 326
316 #action-menu > :not(hr) { 327 #action-menu > :not(hr) {
317 line-height: 29px; 328 line-height: 29px;
318 outline: none; 329 outline: none;
319 } 330 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698