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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
/* 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. */
.select-album-dialog-container {
-webkit-box-align: center;
-webkit-box-pack: center;
-webkit-user-select: none;
display: -webkit-box;
height: 100%;
left: 0;
overflow: hidden;
position: absolute;
top: 0;
width: 100%;
z-index: 9999;
}
.select-album-dialog-shield {
background-color: rgba(0, 0, 0, 0);
bottom: 0;
display: block;
left: 0;
opacity: 0;
pointer-events: none;
position: absolute;
right: 0;
top: 0;
}
.select-album-dialog-frame {
-webkit-box-orient: vertical;
background-color: black;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 0;
color: white;
cursor: default;
display: -webkit-box;
padding: 14px 17px;
position: relative;
width: 460px;
}
.select-album-dialog-caption {
margin: 10px 0;
}
.select-album-dialog-buttons {
-webkit-box-orient: horizontal;
-webkit-box-pack: end;
display: -webkit-box;
padding-top: 10px;
}
.select-album-list {
max-height: 390px;
}
.select-album-list::-webkit-scrollbar {
background: black;
}
.select-album-list::-webkit-scrollbar-thumb {
background: rgb(31, 31, 31);
}
.select-album-list > li {
-webkit-box-align: center;
-webkit-box-orient: horizontal;
-webkit-box-pack: start;
background: black;
border: none !important;
display: -webkit-box;
height: 130px;
margin: 0;
padding: 0;
}
.select-album-list > li:hover,
.select-album-list > li[selected],
.select-album-list > li[lead] {
background: rgb(50, 50, 50) !important;
}
.select-album-list > li > .img-frame {
height: 120px;
margin: 5px;
width: 160px;
}
.select-album-list > li > .name {
-webkit-box-flex: 1;
font-size: 120%;
margin-left: 15px;
margin-right: 15px;
}
.select-album-list > li > input {
-webkit-appearance: none;
background: rgba(0, 0, 0, 0);
border: none;
color: white;
height: 26px;
padding: 1px 3px;
}
.select-album-list > li > input:focus,
.select-album-list > li > input:hover {
background: rgb(31, 31, 31);
outline: none;
}
|