Home | History | Annotate | Download | only in chromeos
      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  */
      5 
      6 input:invalid {
      7   background-color: rgb(255, 102, 102);
      8 }
      9 
     10 .left-icon {
     11   background-position: 4px top !important;
     12 }
     13 
     14 .network-menu-item {
     15   width: 100%;
     16 }
     17 
     18 .network-label-icon {
     19   -webkit-box-align: center;
     20   display: -webkit-box;
     21   min-height: 24px;
     22 }
     23 
     24 .network-label {
     25   -webkit-box-flex: 1;
     26 }
     27 
     28 .network-icon {
     29   background-position: 50% 50%;
     30   background-repeat: no-repeat;
     31   height: 24px;
     32   width: 24px;
     33 }
     34 
     35 .network-status {
     36   color: grey;
     37 }
     38 
     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);
     45 }
     46 
     47 @-webkit-keyframes spin {
     48   from {
     49     -webkit-transform: rotate(0);
     50   }
     51   to {
     52     -webkit-transform: rotate(360deg);
     53   }
     54 }
     55