forked from Studio-42/elFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.css
96 lines (75 loc) · 1.95 KB
/
common.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
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
/*********************************************/
/* COMMON ELFINDER STUFFS */
/*********************************************/
/* common container */
.elfinder { padding:0; position:relative; display:block; }
/* right to left enviroment */
.elfinder-rtl { text-align:right; direction:rtl; }
/* nav and cwd container */
.elfinder-workzone {
padding: 0;
position:relative;
overflow:hidden;
}
/* dir/file permissions and symlink markers */
.elfinder-perms,
.elfinder-symlink {
position:absolute;
width:16px;
height:16px;
background-image:url(../img/toolbar.png);
background-repeat:no-repeat;
background-position:0 -528px;
}
.elfinder-symlink { }
/* noaccess */
.elfinder-na .elfinder-perms { background-position:0 -96px; }
/* read only */
.elfinder-ro .elfinder-perms { background-position:0 -64px;}
/* write only */
.elfinder-wo .elfinder-perms { background-position:0 -80px;}
/* drag helper */
.elfinder-drag-helper {
width:60px;
height:50px;
padding:0 0 0 25px;
z-index:100000;
}
/* drag helper "plus" icon */
.elfinder-drag-helper-icon-plus {
position:absolute;
width:16px;
height:16px;
left:43px;
top:55px;
background:url('../img/toolbar.png') 0 -544px no-repeat;
display:none;
}
/* show "plus" icon when ctrl/shift pressed */
.elfinder-drag-helper-plus .elfinder-drag-helper-icon-plus { display:block; }
/* files num in drag helper */
.elfinder-drag-num {
position:absolute;
top:0;
left:0;
width:16px;
height:14px;
text-align:center;
padding-top:2px;
font-weight:bold;
color:#fff;
background-color:red;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
}
/* icon in drag helper */
.elfinder-drag-helper .elfinder-cwd-icon { margin:0 0 0 -24px; float:left; }
/* transparent overlay >_< */
.elfinder-overlay { opacity: 0; filter:Alpha(Opacity=0); }
/* panels under/below cwd (for search field etc) */
.elfinder .elfinder-panel {
position:relative;
background-image:none;
padding:7px 12px;
}