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 #startupPagesList .url input { 28 width: 100%; 29 } 30 31 #startupPagesListDropmarker { 32 background-clip: padding-box; 33 background-color: hsl(214, 91%, 65%); 34 border: 2px solid hsl(214, 91%, 65%); 35 border-bottom-color: transparent; 36 border-radius: 0; 37 border-top-color: transparent; 38 box-sizing: border-box; 39 display: none; 40 height: 6px; 41 overflow: hidden; 42 pointer-events: none; 43 position: fixed; 44 z-index: 10; 45 } 46