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-search {
      6   z-index: 3;
      7 }
      8 
      9 #destination-search.transparent {
     10   opacity: 0;
     11   overflow: hidden;
     12   pointer-events: none;
     13 }
     14 
     15 #destination-search .page {
     16   width: 640px;
     17 }
     18 
     19 #destination-search .user-info {
     20   -webkit-user-select: none;
     21   overflow: hidden;
     22   position: absolute;
     23   right: 40px;
     24   text-align: right;
     25   text-overflow: ellipsis;
     26   top: 14px;
     27   white-space: nowrap;
     28   width: 350px;
     29 }
     30 
     31 [dir='rtl'] #destination-search .user-info {
     32   left: 40px;
     33   right: auto;
     34 }
     35 
     36 #destination-search > .page > .close-button {
     37   top: 9px;
     38 }
     39 
     40 #destination-search .search-box {
     41   -webkit-user-select: none;
     42   margin: 14px;
     43 }
     44 
     45 #destination-search .lists {
     46   -webkit-box-flex: 1;
     47   overflow-y: auto;
     48 }
     49 
     50 #destination-search .lists > * {
     51   -webkit-user-select: none;
     52   padding: 0 14px 18px;
     53 }
     54 
     55 #destination-search .cloudprint-promo {
     56   -webkit-box-align: center;
     57   -webkit-user-select: none;
     58   background-color: rgb(249, 237, 190);
     59   display: -webkit-box;
     60   padding: 12px;
     61 }
     62 
     63 #destination-search .cloudprint-promo .sign-in.link-button {
     64   padding: inherit;
     65 }
     66 
     67 #destination-search .cloudprint-promo .icon {
     68   -webkit-margin-end: 12px;
     69   display: block;
     70   height: 24px;
     71   width: 24px;
     72 }
     73 
     74 #destination-search .cloudprint-promo .promo-text {
     75   -webkit-box-flex: 1;
     76 }
     77 
     78 #destination-search .cloudprint-promo .close-button {
     79   -webkit-margin-start: 12px;
     80   background-image: url('chrome://theme/IDR_CLOSE_DIALOG');
     81   background-repeat: no-repeat;
     82   background-size: 14px;
     83   height: 14px;
     84   width: 14px;
     85 }
     86 
     87 #destination-search .cloudprint-promo .close-button:hover {
     88   background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H');
     89 }
     90 
     91 #destination-search .cloudprint-promo .close-button:active {
     92   background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P');
     93 }
     94