blob: dc74debad7b3872cce85531a44b1627a34ae9952 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
#startup-overlay {
min-width: 500px;
}
#startupPagesList {
margin-bottom: 20px;
min-height: 64px;
}
#startupPagesList .title {
width: 40%;
}
#startupPagesList .url {
-webkit-box-flex: 1;
color: #666;
}
#startupPagesList > * {
max-width: 700px;
}
#startupPagesListDropmarker {
background-clip: padding-box;
background-color: hsl(214, 91%, 65%);
border: 2px solid hsl(214, 91%, 65%);
border-bottom-color: transparent;
border-radius: 0;
border-top-color: transparent;
box-sizing: border-box;
display: none;
height: 6px;
overflow: hidden;
pointer-events: none;
position: fixed;
z-index: 10;
}
|