-
Notifications
You must be signed in to change notification settings - Fork 0
/
elFinderPicker.css
61 lines (58 loc) · 957 Bytes
/
elFinderPicker.css
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
.elfinder-picker{
position: fixed;
width: 100%;
height: 100%;
background: rgba(255,255,255,0.6);
top: 0;
left: 0;
z-index: 100000;
overflow: auto;
}
.elfinder-picker-backdrop{
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
}
.elfinder-picker-content{
padding: 16px;
position: relative;
top: 2rem;
margin: 2rem auto;
width: 80%;
min-width: 35%;
max-width: 1000px;
background: white;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.22);
box-sizing: border-box;
}
.elfinder-picker-close{
position: absolute;
top: 16px;
right: 30px;
cursor: pointer;
font-size: 24px;
z-index: 1;
opacity: 0.6;
}
.elfinder-picker-title{
margin: 5px 30px 5px 10px;
}
.elfinder-picker-iframe{
border: 0;
width: 100%;
height: 450px;
}
@media screen and ( max-width: 720px ){
.elfinder-picker-content{
top: 0;
padding: 16px 4px;
width: 95%;
margin: 16px auto;
}
.elfinder-picker-close{
right: 18px;
font-size: 26px;
}
}