Home | History | Annotate | Download | only in search
      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
      3  * found in the LICENSE file. */
      4 
      5 .destination-list-item {
      6   -webkit-padding-end: 2px;
      7   -webkit-padding-start: 18px;
      8   -webkit-transition: background-color 150ms;
      9   cursor: default;
     10   padding-bottom: 3px;
     11   padding-top: 3px;
     12 }
     13 
     14 .destination-list-item:hover {
     15   background-color: rgb(228, 236, 247);
     16 }
     17 
     18 .destination-list-item.stale {
     19   opacity: 0.4;
     20 }
     21 
     22 .destination-list-item-content {
     23   display: flex;
     24 }
     25 
     26 .destination-list-item-icon {
     27   -webkit-margin-end: 8px;
     28   -webkit-transition: opacity 150ms;
     29   display: inline-block;
     30   flex: 0 0 auto;
     31   height: 24px;
     32   vertical-align: middle;
     33   width: 24px;
     34 }
     35 
     36 .destination-list-item-name {
     37   flex: 0 1 auto;
     38   line-height: 24px;
     39   overflow: hidden;
     40   text-overflow: ellipsis;
     41   vertical-align: middle;
     42   white-space: nowrap;
     43 }
     44 
     45 .destination-list-item-name .search-hint {
     46   -webkit-margin-start: 1em;
     47   color: #999;
     48   font-size: 75%;
     49 }
     50 
     51 .destination-list-item .offline-status {
     52   -webkit-margin-start: 1em;
     53   flex: 0 0 auto;
     54   font-size: 75%;
     55   line-height: 24px;
     56   vertical-align: middle;
     57 }
     58 
     59 .register-promo {
     60   -webkit-margin-start: 1em;
     61   flex: 0 0 auto;
     62 }
     63 
     64 .destination-list-item-query-highlight {
     65   background-color: rgba(255, 240, 120, 0.9);
     66 }
     67