summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/login/pairing_device_list.css
blob: 9075c99afe93108779a6c7aa3e730e6caffadea0 (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
/* Copyright 2014 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.
 */

/* TODO(dzhioev): support RTL. http://crbug.com/423354 */

:host {
  display: block;
  overflow: auto;
}

core-selector {
  display: block;
}

:host([connecting]) {
  pointer-events: none;
}

core-item {
  padding-bottom: 22px;
  padding-top: 22px;
}

/* [icon] is needed to increase specificity. */
core-item core-icon[icon] {
  height: 40px;
  margin-right: 1em;
  width: 40px;
}

/* Items separator. */
core-item:not(:last-child)::after {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: calc(40px + 1em);
  position: absolute;
  right: 0;
}

.throbber {
  display: none;
}

:host([connecting]) core-item.core-selected .throbber {
  background: url(chrome://resources/images/throbber.svg) no-repeat;
  background-size: cover;
  display: inline-block;
  height: 25px;
  margin-right: 10px;
  width: 25px;
}