blob: 7ea8b11fb5a51e4d3c2c45cdc63b174991bdfb97 (
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
|
#startup-overlay {
min-width: 600px;
}
#startupPagesList {
margin-bottom: 20px;
min-height: 64px;
min-width: 600px;
}
#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-bottom-color: transparent;
border-radius: 0;
border-top-color: transparent;
border: 2px solid hsl(214, 91%, 65%);
box-sizing: border-box;
display: none;
height: 6px;
overflow: hidden;
pointer-events: none;
position: fixed;
z-index: 10;
}
|