cros: Remove default pinned apps trial.
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / network_menu.css
blobced8e74084a411478e520c9697fd466ed602a566
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 */
6 input:invalid {
7 background-color: rgb(255, 102, 102);
10 .left-icon {
11 background-position: 4px top !important;
14 .network-menu-item {
15 width: 100%;
18 .network-label-icon {
19 -webkit-box-align: center;
20 display: -webkit-box;
21 min-height: 24px;
24 .network-label {
25 -webkit-box-flex: 1;
28 .network-icon {
29 background-position: 50% 50%;
30 background-repeat: no-repeat;
31 height: 24px;
32 width: 24px;
35 .network-status {
36 color: grey;
39 .spinner {
40 -webkit-animation-duration: 2s;
41 -webkit-animation-iteration-count: infinite;
42 -webkit-animation-name: spin;
43 -webkit-animation-timing-function: linear;
44 background-image: -webkit-canvas(spinner-circle);
47 @-webkit-keyframes spin {
48 from {
49 -webkit-transform: rotate(0);
51 to {
52 -webkit-transform: rotate(360deg);