summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/print_preview/search/destination_search.css
blob: 6b3943ed0865e94df9c75cd59771bc4eb3f074bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file. */

#destination-search {
  z-index: 3;
}

#destination-search.transparent {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

#destination-search .page {
  width: 640px;
}

#destination-search .user-info {
  display: flex;
  position: absolute;
  right: 40px;
  text-align: right;
  top: 14px;
  width: 350px;
}

[dir='rtl'] #destination-search .user-info {
  left: 40px;
  right: auto;
}

#destination-search .account-select-label {
  -webkit-user-select: none;
  flex: 1;
  height: 2em;
  line-height: 2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#destination-search .account-select {
  flex: 1;
  margin-left: 8px;
}

#destination-search > .page > .close-button {
  top: 9px;
}

#destination-search .search-box {
  -webkit-user-select: none;
  margin: 14px;
}

#destination-search .lists {
  -webkit-box-flex: 1;
  overflow-y: auto;
}

#destination-search .lists > * {
  -webkit-user-select: none;
  padding: 0 14px 18px;
}

#destination-search .cloudprint-promo {
  -webkit-box-align: center;
  -webkit-user-select: none;
  background-color: rgb(249, 237, 190);
  display: -webkit-box;
  padding: 12px;
}

#destination-search .cloudprint-promo .sign-in.link-button {
  padding: inherit;
}

#destination-search .cloudprint-promo .icon {
  -webkit-margin-end: 12px;
  display: block;
  height: 24px;
  width: 24px;
}

#destination-search .cloudprint-promo .promo-text {
  -webkit-box-flex: 1;
}

#destination-search .cloudprint-promo .close-button {
  -webkit-margin-start: 12px;
  background-image: -webkit-image-set(
    url('chrome://theme/IDR_CLOSE_DIALOG') 1x,
    url('chrome://theme/IDR_CLOSE_DIALOG@2x') 2x);
  background-repeat: no-repeat;
  background-size: 14px;
  height: 14px;
  width: 14px;
}

#destination-search .cloudprint-promo .close-button:hover {
  background-image: -webkit-image-set(
    url('chrome://theme/IDR_CLOSE_DIALOG_H') 1x,
    url('chrome://theme/IDR_CLOSE_DIALOG_H@2x') 2x);
}

#destination-search .cloudprint-promo .close-button:active {
  background-image: -webkit-image-set(
    url('chrome://theme/IDR_CLOSE_DIALOG_P') 1x,
    url('chrome://theme/IDR_CLOSE_DIALOG_P@2x') 2x);
}