Home | History | Annotate | Download | only in options
      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 #startup-overlay {
      6   min-width: 500px;
      7 }
      8 
      9 #startupPagesList {
     10   margin-bottom: 20px;
     11   min-height: 64px;
     12 }
     13 
     14 #startupPagesList .title {
     15   width: 40%;
     16 }
     17 
     18 #startupPagesList .url {
     19   -webkit-box-flex: 1;
     20   color: #666;
     21 }
     22 
     23 #startupPagesList > * {
     24   max-width: 700px;
     25 }
     26 
     27 #startupPagesListDropmarker {
     28   background-clip: padding-box;
     29   background-color: hsl(214, 91%, 65%);
     30   border: 2px solid hsl(214, 91%, 65%);
     31   border-bottom-color: transparent;
     32   border-radius: 0;
     33   border-top-color: transparent;
     34   box-sizing: border-box;
     35   display: none;
     36   height: 6px;
     37   overflow: hidden;
     38   pointer-events: none;
     39   position: fixed;
     40   z-index: 10;
     41 }
     42