forked from Studio-42/elFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
statusbar.css
94 lines (84 loc) · 2.35 KB
/
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
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
/******************************************************************/
/* 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 span {
cursor: pointer;
/*display: inline-block;*/
vertical-align: bottom;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
text-overflow: "..";
-o-text-overflow: "..";
}
.elfinder-statusbar span.ui-state-hover,
.elfinder-statusbar span.ui-state-active { border: none; }
.elfinder-statusbar span.elfinder-path-cwd { cursor: default; }
/* 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; }
/* path in workzone (case of swipe to navbar close) */
.elfinder-workzone-path {
position: relative;
}
.elfinder-workzone-path .elfinder-path {
position: relative;
font-size: .75em;
font-weight: normal;
float: none;
max-width: none;
overflow-x: scroll;
text-overflow: initial;
-o-text-overflow: initial;
}
.elfinder-ltr .elfinder-workzone-path .elfinder-path {
margin-left: 24px;
}
.elfinder-rtl .elfinder-workzone-path .elfinder-path {
margin-right: 24px;
}
.elfinder-workzone-path .elfinder-path span {
display: inline-block;
padding: 5px 3px;
}
.elfinder-workzone-path .elfinder-path span.elfinder-path-cwd {
font-weight: bold;
}
.elfinder-workzone-path .elfinder-path span.ui-state-hover,
.elfinder-workzone-path .elfinder-path span.ui-state-active { border: none; }
.elfinder-workzone-path .elfinder-path-roots {
position: absolute;
top: 0;
width: 24px;
height: 20px;
padding: 2px;
border: none;
overflow: hidden;
}
.elfinder-ltr .elfinder-workzone-path .elfinder-path-roots {
left: 0;
}
.elfinder-rtl .elfinder-workzone-path .elfinder-path-roots {
right: 0;
}
/* 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; }