Home | History | Annotate | Download | only in login
      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  * This is the stylesheet used for notifications in enterprise-enrolled devices.
      6  */
      7 
      8 #enterprise-info {
      9   background-color: rgb(250, 245, 202);
     10   border: 2px solid rgb(250, 245, 202);
     11   border-radius: 2px;
     12   margin-left: auto;
     13   margin-right: auto;
     14   padding: 3px 8px 7px;
     15 }
     16 
     17 #enterprise-info[location='guest-tab'] {
     18   box-sizing: border-box;
     19   margin-bottom: -43px;
     20   max-width: 640px;
     21 }
     22 
     23 #enterprise-info[visible='false'] {
     24   display: none;
     25 }
     26 
     27 #enterprise-info img {
     28   -webkit-margin-end: 4px;
     29   position: relative;
     30   top: 3px;
     31 }
     32 
     33 @media (max-height:480px) and (max-width:400px) {
     34   #enterprise-info[location='guest-tab'] {
     35     margin-bottom: 1em;
     36   }
     37 }
     38 
     39 @media (max-width:400px) {
     40   #enterprise-info[location='guest-tab'] {
     41     margin-top: -2em;
     42   }
     43 }
     44