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

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: 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::before {
Patrick Dubroy 2013/02/07 18:49:24 This should probably also be done with a backgroun
240 -webkit-transform: rotate(180deg);
241 content: url('../triangle_small_right.png') no-repeat;
242 display: inline-block;
243 position: relative;
244 }
245
246 #range-next::before {
247 content: url('../triangle_small_right.png') no-repeat;
248 position: relative;
249 top: 1px;
250 }
251
239 .entry-box { 252 .entry-box {
240 background-color: none; 253 background-color: none;
241 } 254 }
242 255
243 .entry-box:hover, 256 .entry-box:hover,
244 .entry-box.contains-focus { 257 .entry-box.contains-focus {
245 background-color: rgb(252, 252, 252); 258 background-color: rgb(252, 252, 252);
246 border-radius: 2px; 259 border-radius: 2px;
247 } 260 }
248 261
249 .entry .title { 262 .entry .title {
250 -webkit-box-flex: 1; 263 -webkit-box-flex: 1;
251 overflow: hidden; 264 overflow: hidden;
252 text-overflow: ellipsis; 265 text-overflow: ellipsis;
253 white-space: nowrap; 266 white-space: nowrap;
254 } 267 }
255 268
256 .day-results > .entry .title, 269 .day-results > .entry .title,
257 .search-results > .entry .title, 270 .search-results > .entry .title,
258 .site-domain { 271 .site-domain {
259 /* Make room for the favicon. */ 272 /* Make room for the favicon. */
260 -webkit-padding-start: 20px; 273 -webkit-padding-start: 20px;
261 274
262 /* Control the favicon appearance. */ 275 /* Control the favicon appearance. */
263 background-position-y: 3px; 276 background-position-y: 3px;
264 background-repeat: no-repeat; 277 background-repeat: no-repeat;
265 background-size: 16px; 278 background-size: 16px;
266 } 279 }
267 280
281 .site-arrow-button {
282 background: url('../triangle_small_right.png') no-repeat;
283 display: inline-block;
284 height: 12px;
285 left: 5px;
286 position: absolute;
287 top: 5px;
288 width: 12px;
289 }
290
268 .site-domain-arrow { 291 .site-domain-arrow {
269 -webkit-transition: -webkit-transform 300ms linear; 292 -webkit-transition: -webkit-transform 300ms linear;
270 color: #8F8F8F; 293 color: #8F8F8F;
271 height: 21px; 294 height: 21px;
272 margin-right: 2px; 295 margin-right: 2px;
273 text-align: center; 296 text-align: center;
274 width: 21px; 297 width: 21px;
275 } 298 }
276 299
277 .site-domain-arrow.collapse { 300 .site-domain-arrow.collapse {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 333
311 .menu-button.drop-down { 334 .menu-button.drop-down {
312 position: relative; 335 position: relative;
313 top: 2px; 336 top: 2px;
314 } 337 }
315 338
316 #action-menu > :not(hr) { 339 #action-menu > :not(hr) {
317 line-height: 29px; 340 line-height: 29px;
318 outline: none; 341 outline: none;
319 } 342 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/history/history.html » ('j') | chrome/browser/resources/history/history.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698