forked from Studio-42/elFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
statusbar.css
37 lines (28 loc) · 978 Bytes
/
statusbar.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
/******************************************************************/
/* STATUSBAR STYLES */
/******************************************************************/
/* statusbar container */
.elfinder-statusbar {
text-align:center;
font-weight:normal;
padding:.2em .5em;
border-right:0 solid transparent;
border-bottom:0 solid transparent;
border-left:0 solid transparent;
}
.elfinder-statusbar a { text-decoration:none; }
/* path in statusbar */
.elfinder-path {
max-width:30%;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
-o-text-overflow:ellipsis;
}
.elfinder-ltr .elfinder-path { float:left; }
.elfinder-rtl .elfinder-path { float:right; }
/* total/selected size in statusbar */
.elfinder-stat-size { white-space:nowrap; }
.elfinder-ltr .elfinder-stat-size { float:right; }
.elfinder-rtl .elfinder-stat-size { float:left; }
.elfinder-stat-selected { white-space:nowrap; overflow:hidden; }