summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/login/gaia_icon_button.css
blob: dc61a0a88c3aaf5c090a6904b76ccee94efcb34b (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
/* Copyright 2015 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.
 */

:host {
  background: transparent;
  border: none;
  border-radius: 50%;
  height: 24px;
  margin: 0;
  outline: none;
  padding: 0;
  width: 24px;
}

:host(:hover) {
  cursor: pointer;
}

:host(:focus) {
  background: rgba(0, 0, 0, .16);
  border-color: transparent;
  opacity: 0.75;
}

:host(:active) {
  background: rgba(0, 0, 0, .12);
  opacity: 1.0;
}