summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/chromeos/network_menu.css
blob: ced8e74084a411478e520c9697fd466ed602a566 (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
/* 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.
 */

input:invalid {
  background-color: rgb(255, 102, 102);
}

.left-icon {
  background-position: 4px top !important;
}

.network-menu-item {
  width: 100%;
}

.network-label-icon {
  -webkit-box-align: center;
  display: -webkit-box;
  min-height: 24px;
}

.network-label {
  -webkit-box-flex: 1;
}

.network-icon {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 24px;
  width: 24px;
}

.network-status {
  color: grey;
}

.spinner {
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: spin;
  -webkit-animation-timing-function: linear;
  background-image: -webkit-canvas(spinner-circle);
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}