home *** CD-ROM | disk | FTP | other *** search
/ Freelog 115 / FreelogNo115-MaiJuin2013.iso / Internet / AvantBrowser / asetup.exe / _data / webkit / chrome.dll / 0 / BINDATA / 563 < prev    next >
Encoding:
Text File  |  2013-04-03  |  1007 b   |  52 lines

  1. /* Copyright 2012 The Chromium Authors. All rights reserved.
  2.  * Use of this source code is governed by a BSD-style license that can be
  3.  * found in the LICENSE file. */
  4.  
  5. body {
  6.   background-color: white;
  7.   cursor: default;
  8.   margin: 0;
  9.   overflow: hidden;
  10. }
  11.  
  12. #suggestionsBox {
  13.   border-bottom: 1px #d9d9d9 solid;
  14.   padding-bottom: 6px;
  15.   padding-top: 6px;
  16. }
  17.  
  18. .suggestion {
  19.   -webkit-border-radius: 2px;
  20.   background: -webkit-image-set(
  21.       url('images/page_icon.png') 1x,
  22.       url('images/2x/page_icon.png') 2x)
  23.     5px 4px no-repeat;
  24.   padding-bottom: 2px;
  25.   padding-top: 3px;
  26.   white-space: nowrap;
  27. }
  28.  
  29. .suggestion:hover {
  30.   background-color: rgba(181, 213, 255, 0.2);
  31. }
  32.  
  33. .selected,
  34. .selected:hover {
  35.   background-color: rgba(181, 213, 255, 0.5);
  36. }
  37.  
  38. .contents {
  39.   -webkit-padding-start: 26px;
  40.   -webkit-user-select: none;
  41.   line-height: 22px;
  42.   overflow: hidden;
  43. }
  44.  
  45. /* Styling for native suggestions, hidden by the shadow DOM. */
  46. .chrome_url {
  47.   color: rgb(0, 153, 51);
  48. }
  49.  
  50. .chrome_title {
  51.   color: #666
  52. }