el_vfs_client 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/assets/audios/sounds/rm.wav +0 -0
- data/app/assets/images/el_vfs/elfinder/crop.gif +0 -0
- data/app/assets/images/el_vfs/elfinder/toolbar.png +0 -0
- data/app/assets/javascripts/el_vfs/elfinder.js +19 -9595
- data/app/assets/javascripts/el_vfs/i18n/elfinder.LANG.js +72 -5
- data/app/assets/javascripts/el_vfs/i18n/elfinder.ru.js +68 -4
- data/app/assets/stylesheets/el_vfs/elfinder.sass +282 -371
- data/app/assets/stylesheets/el_vfs/jquery_ui.sass +22 -31
- data/app/assets/stylesheets/el_vfs/theme.sass +2 -0
- data/app/views/el_finder/layout.html.erb +1 -1
- data/lib/el_vfs_client.rb +1 -1
- data/lib/el_vfs_client/version.rb +1 -1
- metadata +45 -37
@@ -1,13 +1,22 @@
|
|
1
1
|
/**
|
2
2
|
* elFinder translation template
|
3
|
-
*
|
4
3
|
* use this file to create new translation
|
5
|
-
|
4
|
+
* submit new translation via https://github.com/Studio-42/elFinder/issues
|
5
|
+
* or make a pull request
|
6
|
+
*/
|
7
|
+
|
8
|
+
/**
|
9
|
+
* XXXXX translation
|
10
|
+
* @author Translator Name <translator@email.tld>
|
11
|
+
* @version 201x-xx-xx
|
12
|
+
*/
|
6
13
|
if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object') {
|
7
|
-
elFinder.prototype.i18.
|
14
|
+
elFinder.prototype.i18.REPLACE_WITH_xx_OR_xx_YY_LANG_CODE = {
|
8
15
|
translator : 'Translator name <translator@email.tld>',
|
9
|
-
language : 'Language of translation',
|
16
|
+
language : 'Language of translation in your language',
|
10
17
|
direction : 'ltr',
|
18
|
+
dateFormat : 'd.m.Y H:i',
|
19
|
+
fancyDateFormat : '$1 H:i',
|
11
20
|
messages : {
|
12
21
|
|
13
22
|
/********************************** errors **********************************/
|
@@ -65,6 +74,11 @@ if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object'
|
|
65
74
|
'errArcType' : 'Unsupported archive type.',
|
66
75
|
'errNoArchive' : 'File is not archive or has unsupported archive type.',
|
67
76
|
'errCmdNoSupport' : 'Backend does not support this command.',
|
77
|
+
'errReplByChild' : 'The folder “$1” can’t be replaced by an item it contains.',
|
78
|
+
'errArcSymlinks' : 'For security reason denied to unpack archives contains symlinks.',
|
79
|
+
'errArcMaxSize' : 'Archive files exceeds maximum allowed size.',
|
80
|
+
'errResize' : 'Unable to resize "$1".',
|
81
|
+
'errUsupportType' : 'Unsupported file type.',
|
68
82
|
|
69
83
|
/******************************* commands names ********************************/
|
70
84
|
'cmdarchive' : 'Create archive',
|
@@ -92,11 +106,14 @@ if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object'
|
|
92
106
|
'cmdup' : 'Go to parent directory',
|
93
107
|
'cmdupload' : 'Upload files',
|
94
108
|
'cmdview' : 'View',
|
109
|
+
'cmdresize' : 'Resize image',
|
110
|
+
'cmdsort' : 'Sort',
|
95
111
|
|
96
112
|
/*********************************** buttons ***********************************/
|
97
113
|
'btnClose' : 'Close',
|
98
114
|
'btnSave' : 'Save',
|
99
115
|
'btnRm' : 'Remove',
|
116
|
+
'btnApply' : 'Apply',
|
100
117
|
'btnCancel' : 'Cancel',
|
101
118
|
'btnNo' : 'No',
|
102
119
|
'btnYes' : 'Yes',
|
@@ -119,6 +136,7 @@ if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object'
|
|
119
136
|
'ntfextract' : 'Extracting files from archive',
|
120
137
|
'ntfsearch' : 'Searching files',
|
121
138
|
'ntfsmth' : 'Doing something >_<',
|
139
|
+
'ntfloadimg' : 'Loading image',
|
122
140
|
|
123
141
|
/************************************ dates **********************************/
|
124
142
|
'dateUnknown' : 'unknown',
|
@@ -136,7 +154,42 @@ if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object'
|
|
136
154
|
'Oct' : 'Oct',
|
137
155
|
'Nov' : 'Nov',
|
138
156
|
'Dec' : 'Dec',
|
139
|
-
|
157
|
+
'January' : 'January',
|
158
|
+
'February' : 'February',
|
159
|
+
'March' : 'March',
|
160
|
+
'April' : 'April',
|
161
|
+
'May' : 'May',
|
162
|
+
'June' : 'June',
|
163
|
+
'July' : 'July',
|
164
|
+
'August' : 'August',
|
165
|
+
'September' : 'September',
|
166
|
+
'October' : 'October',
|
167
|
+
'November' : 'November',
|
168
|
+
'December' : 'December',
|
169
|
+
'Sunday' : 'Sunday',
|
170
|
+
'Monday' : 'Monday',
|
171
|
+
'Tuesday' : 'Tuesday',
|
172
|
+
'Wednesday' : 'Wednesday',
|
173
|
+
'Thursday' : 'Thursday',
|
174
|
+
'Friday' : 'Friday',
|
175
|
+
'Saturday' : 'Saturday',
|
176
|
+
'Sun' : 'Sun',
|
177
|
+
'Mon' : 'Mon',
|
178
|
+
'Tue' : 'Tue',
|
179
|
+
'Wed' : 'Wed',
|
180
|
+
'Thu' : 'Thu',
|
181
|
+
'Fri' : 'Fri',
|
182
|
+
'Sat' : 'Sat',
|
183
|
+
/******************************** sort variants ********************************/
|
184
|
+
'sortnameDirsFirst' : 'by name (folders first)',
|
185
|
+
'sortkindDirsFirst' : 'by kind (folders first)',
|
186
|
+
'sortsizeDirsFirst' : 'by size (folders first)',
|
187
|
+
'sortdateDirsFirst' : 'by date (folders first)',
|
188
|
+
'sortname' : 'by name',
|
189
|
+
'sortkind' : 'by kind',
|
190
|
+
'sortsize' : 'by size',
|
191
|
+
'sortdate' : 'by date',
|
192
|
+
|
140
193
|
/********************************** messages **********************************/
|
141
194
|
'confirmReq' : 'Confirmation required',
|
142
195
|
'confirmRm' : 'Are you sure you want to remove files?<br/>This cannot be undone!',
|
@@ -197,6 +250,20 @@ if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object'
|
|
197
250
|
'selectForUpload' : 'Select files to upload',
|
198
251
|
'moveFiles' : 'Move files',
|
199
252
|
'copyFiles' : 'Copy files',
|
253
|
+
'rmFromPlaces' : 'Remove from places',
|
254
|
+
'untitled folder' : 'untitled folder',
|
255
|
+
'untitled file.txt' : 'untitled file.txt',
|
256
|
+
'aspectRatio' : 'Aspect ratio',
|
257
|
+
'scale' : 'Scale',
|
258
|
+
'width' : 'Width',
|
259
|
+
'height' : 'Height',
|
260
|
+
'mode' : 'Mode',
|
261
|
+
'resize' : 'Resize',
|
262
|
+
'crop' : 'Crop',
|
263
|
+
'rotate' : 'Rotate',
|
264
|
+
'rotate-cw' : 'Rotate 90 degrees CW',
|
265
|
+
'rotate-ccw' : 'Rotate 90 degrees CCW',
|
266
|
+
'degree' : 'Degree',
|
200
267
|
|
201
268
|
/********************************** mimetypes **********************************/
|
202
269
|
'kindUnknown' : 'Unknown',
|
@@ -1,10 +1,17 @@
|
|
1
|
-
|
1
|
+
/**
|
2
|
+
* Russian translation
|
3
|
+
* @author Dmitry "dio" Levashov <dio@std42.ru>
|
4
|
+
* @version 2011-07-15
|
5
|
+
*/
|
2
6
|
if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object') {
|
3
7
|
elFinder.prototype.i18.ru = {
|
4
|
-
translator : '
|
8
|
+
translator : 'Dmitry "dio" Levashov <dio@std42.ru>',
|
5
9
|
language : 'Русский язык',
|
6
10
|
direction : 'ltr',
|
11
|
+
dateFormat : 'd M Y H:i',
|
12
|
+
fancyDateFormat : '$1 H:i',
|
7
13
|
messages : {
|
14
|
+
|
8
15
|
/********************************** errors **********************************/
|
9
16
|
'error' : 'Ошибка',
|
10
17
|
'errUnknown' : 'Неизвестная ошибка.',
|
@@ -60,7 +67,12 @@ if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object'
|
|
60
67
|
'errArcType' : 'Неподдерживаемый тип архива.',
|
61
68
|
'errNoArchive' : 'Файл не является архивом допустимого типа.',
|
62
69
|
'errCmdNoSupport' : 'Сервер не поддерживает эту комманду.',
|
63
|
-
|
70
|
+
'errReplByChild' : 'Невозможно заменить папку "$1" содержащимся в ней объектом.',
|
71
|
+
'errArcSymlinks' : 'По соображениям безопасности запрещена распаковка архивов, содержащих ссылки (symlinks).',
|
72
|
+
'errArcMaxSize' : 'Размер файлов в архиве превышает максимально разрешенный.',
|
73
|
+
'errResize' : 'Не удалось изменить размер "$1".',
|
74
|
+
'errUsupportType' : 'Неподдерживаемый тип файла.',
|
75
|
+
|
64
76
|
/******************************* commands names ********************************/
|
65
77
|
'cmdarchive' : 'Создать архив',
|
66
78
|
'cmdback' : 'Назад',
|
@@ -87,12 +99,15 @@ if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object'
|
|
87
99
|
'cmdup' : 'Наверх',
|
88
100
|
'cmdupload' : 'Загрузить файлы',
|
89
101
|
'cmdview' : 'Вид',
|
102
|
+
'cmdresize' : 'Размер изображения',
|
103
|
+
'cmdsort' : 'Сортировать',
|
90
104
|
|
91
105
|
/*********************************** buttons ***********************************/
|
92
106
|
'btnClose' : 'Закрыть',
|
93
107
|
'btnSave' : 'Сохранить',
|
94
108
|
'btnRm' : 'Удалить',
|
95
109
|
'btnCancel' : 'Отмена',
|
110
|
+
'btnApply' : 'Применить',
|
96
111
|
'btnNo' : 'Нет',
|
97
112
|
'btnYes' : 'Да',
|
98
113
|
|
@@ -131,6 +146,42 @@ if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object'
|
|
131
146
|
'Oct' : 'Окт',
|
132
147
|
'Nov' : 'Ноя',
|
133
148
|
'Dec' : 'Дек',
|
149
|
+
'January' : 'Январь',
|
150
|
+
'February' : 'Февраль',
|
151
|
+
'March' : 'Март',
|
152
|
+
'April' : 'Апрель',
|
153
|
+
'May' : 'Май',
|
154
|
+
'June' : 'Июнь',
|
155
|
+
'July' : 'Июль',
|
156
|
+
'August' : 'Август',
|
157
|
+
'September' : 'Сентябрь',
|
158
|
+
'October' : 'Октябрь',
|
159
|
+
'November' : 'Ноябрь',
|
160
|
+
'December' : 'Декабрь',
|
161
|
+
'Sunday' : 'Воскресенье',
|
162
|
+
'Monday' : 'Понедельник',
|
163
|
+
'Tuesday' : 'Вторник',
|
164
|
+
'Wednesday' : 'Среда',
|
165
|
+
'Thursday' : 'Четверг',
|
166
|
+
'Friday' : 'Пятница',
|
167
|
+
'Saturday' : 'Суббота',
|
168
|
+
'Sun' : 'Вск',
|
169
|
+
'Mon' : 'Пнд',
|
170
|
+
'Tue' : 'Втр',
|
171
|
+
'Wed' : 'Срд',
|
172
|
+
'Thu' : 'Чтв',
|
173
|
+
'Fri' : 'Птн',
|
174
|
+
'Sat' : 'Сбт',
|
175
|
+
|
176
|
+
/******************************** sort variants ********************************/
|
177
|
+
'sortnameDirsFirst' : 'по имени (папки в начале)',
|
178
|
+
'sortkindDirsFirst' : 'по типу (папки в начале)',
|
179
|
+
'sortsizeDirsFirst' : 'по размеру (папки в начале)',
|
180
|
+
'sortdateDirsFirst' : 'по дате (папки в начале)',
|
181
|
+
'sortname' : 'по имени',
|
182
|
+
'sortkind' : 'по типу',
|
183
|
+
'sortsize' : 'по размеру',
|
184
|
+
'sortdate' : 'по дате',
|
134
185
|
|
135
186
|
/********************************** messages **********************************/
|
136
187
|
'confirmReq' : 'Необходимо подтверждение.',
|
@@ -192,7 +243,20 @@ if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object'
|
|
192
243
|
'selectForUpload' : 'Выбрать файлы для загрузки',
|
193
244
|
'moveFiles' : 'Перемещение файлов',
|
194
245
|
'copyFiles' : 'Копирование файлов',
|
195
|
-
|
246
|
+
'rmFromPlaces' : 'Удалить из избранного',
|
247
|
+
'untitled folder' : 'новая папка',
|
248
|
+
'untitled file.txt' : 'новый файл.txt',
|
249
|
+
'aspectRatio' : 'Сохранять пропорции',
|
250
|
+
'scale' : 'Масштаб',
|
251
|
+
'width' : 'Ширина',
|
252
|
+
'height' : 'Высота',
|
253
|
+
'resize' : 'Размер',
|
254
|
+
'crop' : 'Кадрировать',
|
255
|
+
'rotate' : 'Поворот',
|
256
|
+
'rotate-cw' : 'Поворот на 90 градусов по часовой стрелке',
|
257
|
+
'rotate-ccw' : 'Поворот на 90 градусов против часовой стрелке',
|
258
|
+
'degree' : '°',
|
259
|
+
|
196
260
|
/********************************** mimetypes **********************************/
|
197
261
|
'kindUnknown' : 'Неизвестный',
|
198
262
|
'kindFolder' : 'Папка',
|
@@ -1,18 +1,183 @@
|
|
1
1
|
/*!
|
2
2
|
* elFinder - file manager for web
|
3
|
-
* Version 2.0
|
3
|
+
* Version 2.0 rc1 (2012-04-10)
|
4
4
|
* http://elfinder.org
|
5
5
|
*
|
6
|
-
* Copyright 2009-
|
6
|
+
* Copyright 2009-2012, Studio 42
|
7
7
|
* Licensed under a 3 clauses BSD license
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
/* COMMANDS STYLES
|
12
|
-
/*****************************************************************
|
9
|
+
.elfinder-dialog-resize
|
10
|
+
margin-top: .3em
|
13
11
|
|
14
|
-
|
15
|
-
|
12
|
+
.elfinder-resize-type
|
13
|
+
float: left
|
14
|
+
margin-bottom: .4em
|
15
|
+
|
16
|
+
.elfinder-resize-control
|
17
|
+
padding-top: 3em
|
18
|
+
input[type=text]
|
19
|
+
border: 1px solid #aaa
|
20
|
+
text-align: right
|
21
|
+
|
22
|
+
.elfinder-resize-preview
|
23
|
+
width: 400px
|
24
|
+
height: 400px
|
25
|
+
padding: 10px
|
26
|
+
background: #fff
|
27
|
+
border: 1px solid #aaa
|
28
|
+
float: right
|
29
|
+
position: relative
|
30
|
+
overflow: auto
|
31
|
+
|
32
|
+
.elfinder-resize-handle
|
33
|
+
position: relative
|
34
|
+
|
35
|
+
.elfinder-resize-handle-hline, .elfinder-resize-handle-vline
|
36
|
+
position: absolute
|
37
|
+
background-image: image_url('el_vfs/elfinder/crop.gif')
|
38
|
+
|
39
|
+
.elfinder-resize-handle-hline
|
40
|
+
width: 100%
|
41
|
+
height: 1px!important
|
42
|
+
background-repeat: repeat-x
|
43
|
+
|
44
|
+
.elfinder-resize-handle-vline
|
45
|
+
width: 1px!important
|
46
|
+
height: 100%
|
47
|
+
background-repeat: repeat-y
|
48
|
+
|
49
|
+
.elfinder-resize-handle-hline-top
|
50
|
+
top: 0
|
51
|
+
left: 0
|
52
|
+
|
53
|
+
.elfinder-resize-handle-hline-bottom
|
54
|
+
bottom: 0
|
55
|
+
left: 0
|
56
|
+
|
57
|
+
.elfinder-resize-handle-vline-left
|
58
|
+
top: 0
|
59
|
+
left: 0
|
60
|
+
|
61
|
+
.elfinder-resize-handle-vline-right
|
62
|
+
top: 0
|
63
|
+
right: 0
|
64
|
+
|
65
|
+
.elfinder-resize-handle-point
|
66
|
+
position: absolute
|
67
|
+
width: 8px
|
68
|
+
height: 8px
|
69
|
+
border: 1px solid #777
|
70
|
+
background: 0 0
|
71
|
+
|
72
|
+
.elfinder-resize-handle-point-n
|
73
|
+
top: 0
|
74
|
+
left: 50%
|
75
|
+
margin-top: -5px
|
76
|
+
margin-left: -5px
|
77
|
+
|
78
|
+
.elfinder-resize-handle-point-ne
|
79
|
+
top: 0
|
80
|
+
right: 0
|
81
|
+
margin-top: -5px
|
82
|
+
margin-right: -5px
|
83
|
+
|
84
|
+
.elfinder-resize-handle-point-e
|
85
|
+
top: 50%
|
86
|
+
right: 0
|
87
|
+
margin-top: -5px
|
88
|
+
margin-right: -5px
|
89
|
+
|
90
|
+
.elfinder-resize-handle-point-se
|
91
|
+
bottom: 0
|
92
|
+
right: 0
|
93
|
+
margin-bottom: -5px
|
94
|
+
margin-right: -5px
|
95
|
+
|
96
|
+
.elfinder-resize-handle-point-s
|
97
|
+
bottom: 0
|
98
|
+
left: 50%
|
99
|
+
margin-bottom: -5px
|
100
|
+
margin-left: -5px
|
101
|
+
|
102
|
+
.elfinder-resize-handle-point-sw
|
103
|
+
bottom: 0
|
104
|
+
left: 0
|
105
|
+
margin-bottom: -5px
|
106
|
+
margin-left: -5px
|
107
|
+
|
108
|
+
.elfinder-resize-handle-point-w
|
109
|
+
top: 50%
|
110
|
+
left: 0
|
111
|
+
margin-top: -5px
|
112
|
+
margin-left: -5px
|
113
|
+
|
114
|
+
.elfinder-resize-handle-point-nw
|
115
|
+
top: 0
|
116
|
+
left: 0
|
117
|
+
margin-top: -5px
|
118
|
+
margin-left: -5px
|
119
|
+
|
120
|
+
.elfinder-resize-spinner
|
121
|
+
position: absolute
|
122
|
+
width: 200px
|
123
|
+
height: 30px
|
124
|
+
top: 50%
|
125
|
+
margin-top: -25px
|
126
|
+
left: 50%
|
127
|
+
margin-left: -100px
|
128
|
+
text-align: center
|
129
|
+
background: image_url('el_vfs/elfinder/progress.gif') center bottom repeat-x
|
130
|
+
|
131
|
+
.elfinder-resize-row
|
132
|
+
margin-bottom: 7px
|
133
|
+
position: relative
|
134
|
+
|
135
|
+
.elfinder-resize-label
|
136
|
+
float: left
|
137
|
+
width: 80px
|
138
|
+
padding-top: 3px
|
139
|
+
|
140
|
+
.elfinder-resize-reset
|
141
|
+
width: 16px
|
142
|
+
height: 16px
|
143
|
+
position: absolute
|
144
|
+
margin-top: -8px
|
145
|
+
|
146
|
+
.elfinder-dialog .elfinder-dialog-resize
|
147
|
+
.ui-resizable-e
|
148
|
+
height: 100%
|
149
|
+
width: 10px
|
150
|
+
.ui-resizable-s
|
151
|
+
width: 100%
|
152
|
+
height: 10px
|
153
|
+
.ui-resizable-se
|
154
|
+
background: 0 0
|
155
|
+
bottom: 0
|
156
|
+
right: 0
|
157
|
+
margin-right: -7px
|
158
|
+
margin-bottom: -7px
|
159
|
+
|
160
|
+
.elfinder-dialog-resize
|
161
|
+
.ui-icon-grip-solid-vertical
|
162
|
+
position: absolute
|
163
|
+
top: 50%
|
164
|
+
right: 0
|
165
|
+
margin-top: -8px
|
166
|
+
margin-right: -11px
|
167
|
+
.ui-icon-grip-solid-horizontal
|
168
|
+
position: absolute
|
169
|
+
left: 50%
|
170
|
+
bottom: 0
|
171
|
+
margin-left: -8px
|
172
|
+
margin-bottom: -11px
|
173
|
+
|
174
|
+
.elfinder-resize-row .elfinder-buttonset
|
175
|
+
float: right
|
176
|
+
|
177
|
+
.elfinder-resize-rotate-slider
|
178
|
+
float: left
|
179
|
+
width: 195px
|
180
|
+
margin: 7px 7px 0
|
16
181
|
|
17
182
|
.elfinder-file-edit
|
18
183
|
width: 99%
|
@@ -21,15 +186,11 @@
|
|
21
186
|
padding: 2px
|
22
187
|
border: 1px solid #ccc
|
23
188
|
|
24
|
-
/* help dialog
|
25
|
-
|
26
189
|
.elfinder-help
|
27
190
|
margin-bottom: .5em
|
28
191
|
.ui-tabs-panel
|
29
192
|
padding: .5em
|
30
193
|
|
31
|
-
/* fix tabs
|
32
|
-
|
33
194
|
.elfinder-dialog .ui-tabs .ui-tabs-nav li a
|
34
195
|
padding: .2em 1em
|
35
196
|
|
@@ -56,7 +217,7 @@
|
|
56
217
|
|
57
218
|
.elfinder-help h3
|
58
219
|
font-size: 1.5em
|
59
|
-
margin: .2em 0 .3em
|
220
|
+
margin: .2em 0 .3em
|
60
221
|
|
61
222
|
.elfinder-help-separator
|
62
223
|
clear: both
|
@@ -84,7 +245,7 @@
|
|
84
245
|
font-size: .9em
|
85
246
|
|
86
247
|
.elfinder-help-disabled
|
87
|
-
font-weight:
|
248
|
+
font-weight: 700
|
88
249
|
text-align: center
|
89
250
|
margin: 90px 0
|
90
251
|
|
@@ -109,40 +270,27 @@
|
|
109
270
|
outline: none
|
110
271
|
span
|
111
272
|
font-size: 3em
|
112
|
-
font-weight:
|
273
|
+
font-weight: 700
|
113
274
|
text-align: center
|
114
275
|
color: #fff
|
115
276
|
position: absolute
|
116
277
|
left: 0
|
117
278
|
top: 45px
|
118
279
|
|
119
|
-
/* File: /home/troex/Sites/git/elfinder-2.x/css/common.css
|
120
|
-
/********************************************
|
121
|
-
/* COMMON ELFINDER STUFFS
|
122
|
-
/********************************************
|
123
|
-
|
124
|
-
/* common container
|
125
|
-
|
126
280
|
.elfinder
|
127
281
|
padding: 0
|
128
282
|
position: relative
|
129
283
|
display: block
|
130
284
|
|
131
|
-
/* right to left enviroment
|
132
|
-
|
133
285
|
.elfinder-rtl
|
134
286
|
text-align: right
|
135
287
|
direction: rtl
|
136
288
|
|
137
|
-
/* nav and cwd container
|
138
|
-
|
139
289
|
.elfinder-workzone
|
140
290
|
padding: 0
|
141
291
|
position: relative
|
142
292
|
overflow: hidden
|
143
293
|
|
144
|
-
/* dir/file permissions and symlink markers
|
145
|
-
|
146
294
|
.elfinder-perms, .elfinder-symlink
|
147
295
|
position: absolute
|
148
296
|
width: 16px
|
@@ -151,31 +299,21 @@
|
|
151
299
|
background-repeat: no-repeat
|
152
300
|
background-position: 0 -528px
|
153
301
|
|
154
|
-
/* noaccess
|
155
|
-
|
156
302
|
.elfinder-na .elfinder-perms
|
157
303
|
background-position: 0 -96px
|
158
304
|
|
159
|
-
/* read only
|
160
|
-
|
161
305
|
.elfinder-ro .elfinder-perms
|
162
306
|
background-position: 0 -64px
|
163
307
|
|
164
|
-
/* write only
|
165
|
-
|
166
308
|
.elfinder-wo .elfinder-perms
|
167
309
|
background-position: 0 -80px
|
168
310
|
|
169
|
-
/* drag helper
|
170
|
-
|
171
311
|
.elfinder-drag-helper
|
172
312
|
width: 60px
|
173
313
|
height: 50px
|
174
314
|
padding: 0 0 0 25px
|
175
315
|
z-index: 100000
|
176
316
|
|
177
|
-
/* drag helper 'plus' icon
|
178
|
-
|
179
317
|
.elfinder-drag-helper-icon-plus
|
180
318
|
position: absolute
|
181
319
|
width: 16px
|
@@ -185,13 +323,9 @@
|
|
185
323
|
background: image_url('el_vfs/elfinder/toolbar.png') 0 -544px no-repeat
|
186
324
|
display: none
|
187
325
|
|
188
|
-
/* show 'plus' icon when ctrl/shift pressed
|
189
|
-
|
190
326
|
.elfinder-drag-helper-plus .elfinder-drag-helper-icon-plus
|
191
327
|
display: block
|
192
328
|
|
193
|
-
/* files num in drag helper
|
194
|
-
|
195
329
|
.elfinder-drag-num
|
196
330
|
position: absolute
|
197
331
|
top: 0
|
@@ -201,35 +335,26 @@
|
|
201
335
|
text-align: center
|
202
336
|
padding-top: 2px
|
203
337
|
font-size: 12px
|
204
|
-
font-weight:
|
338
|
+
font-weight: 700
|
205
339
|
color: #fff
|
206
340
|
background-color: red
|
207
341
|
-moz-border-radius: 8px
|
208
342
|
-webkit-border-radius: 8px
|
209
343
|
border-radius: 8px
|
210
344
|
|
211
|
-
/* icon in drag helper
|
212
|
-
|
213
345
|
.elfinder-drag-helper .elfinder-cwd-icon
|
214
346
|
margin: 0 0 0 -24px
|
215
347
|
float: left
|
216
348
|
|
217
|
-
/* transparent overlay >_<
|
218
|
-
|
219
349
|
.elfinder-overlay
|
220
350
|
opacity: 0
|
221
351
|
filter: Alpha(Opacity = 0)
|
222
352
|
|
223
|
-
/* panels under/below cwd (for search field etc)
|
224
|
-
|
225
353
|
.elfinder .elfinder-panel
|
226
354
|
position: relative
|
227
355
|
background-image: none
|
228
356
|
padding: 7px 12px
|
229
357
|
|
230
|
-
/* File: /home/troex/Sites/git/elfinder-2.x/css/contexmenu.css
|
231
|
-
/* menu and submenu
|
232
|
-
|
233
358
|
.elfinder-contextmenu
|
234
359
|
display: none
|
235
360
|
position: absolute
|
@@ -247,18 +372,12 @@
|
|
247
372
|
padding: 4px 0
|
248
373
|
top: 5px
|
249
374
|
|
250
|
-
/* submenu
|
251
|
-
|
252
|
-
/* submenu in rtl/ltr enviroment
|
253
|
-
|
254
375
|
.elfinder-contextmenu-ltr .elfinder-contextmenu-sub
|
255
376
|
margin-left: -5px
|
256
377
|
|
257
378
|
.elfinder-contextmenu-rtl .elfinder-contextmenu-sub
|
258
379
|
margin-right: -5px
|
259
380
|
|
260
|
-
/* menu item
|
261
|
-
|
262
381
|
.elfinder-contextmenu-item
|
263
382
|
position: relative
|
264
383
|
display: block
|
@@ -267,14 +386,10 @@
|
|
267
386
|
white-space: nowrap
|
268
387
|
cursor: default
|
269
388
|
|
270
|
-
/* text in item
|
271
|
-
|
272
389
|
.elfinder-contextmenu .elfinder-contextmenu-item span
|
273
390
|
font-size: .76em
|
274
391
|
display: block
|
275
392
|
|
276
|
-
/* submenu item in rtl/ltr enviroment
|
277
|
-
|
278
393
|
.elfinder-contextmenu-ltr .elfinder-contextmenu-item
|
279
394
|
text-align: left
|
280
395
|
|
@@ -287,30 +402,22 @@
|
|
287
402
|
.elfinder-contextmenu-rtl .elfinder-contextmenu-sub .elfinder-contextmenu-item
|
288
403
|
padding-right: 12px
|
289
404
|
|
290
|
-
/* command/submenu icon
|
291
|
-
|
292
405
|
.elfinder-contextmenu-arrow, .elfinder-contextmenu-icon
|
293
406
|
position: absolute
|
294
407
|
top: 50%
|
295
408
|
margin-top: -8px
|
296
409
|
|
297
|
-
/* command icon in rtl/ltr enviroment
|
298
|
-
|
299
410
|
.elfinder-contextmenu-ltr .elfinder-contextmenu-icon
|
300
411
|
left: 8px
|
301
412
|
|
302
413
|
.elfinder-contextmenu-rtl .elfinder-contextmenu-icon
|
303
414
|
right: 8px
|
304
415
|
|
305
|
-
/* arrow icon
|
306
|
-
|
307
416
|
.elfinder-contextmenu-arrow
|
308
417
|
width: 16px
|
309
418
|
height: 16px
|
310
419
|
background: image_url('el_vfs/elfinder/arrows-normal.png') 5px 4px no-repeat
|
311
420
|
|
312
|
-
/* arrow icon in rtl/ltr enviroment
|
313
|
-
|
314
421
|
.elfinder-contextmenu-ltr .elfinder-contextmenu-arrow
|
315
422
|
right: 5px
|
316
423
|
|
@@ -318,66 +425,53 @@
|
|
318
425
|
left: 5px
|
319
426
|
background-position: 0 -10px
|
320
427
|
|
321
|
-
/* disable ui border/bg image on hover
|
322
|
-
|
323
428
|
.elfinder-contextmenu .ui-state-hover
|
324
429
|
border: 0 solid
|
325
430
|
background-image: none
|
326
431
|
|
327
|
-
/* separator
|
328
|
-
|
329
432
|
.elfinder-contextmenu-separator
|
330
|
-
height:
|
433
|
+
height: 0
|
331
434
|
border-top: 1px solid #ccc
|
332
435
|
margin: 0 1px
|
333
436
|
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
437
|
+
.elfinder-cwd-wrapper
|
438
|
+
overflow: auto
|
439
|
+
position: relative
|
440
|
+
padding: 2px
|
441
|
+
margin: 0
|
338
442
|
|
339
|
-
|
443
|
+
.elfinder-cwd-wrapper-list
|
444
|
+
padding: 0
|
340
445
|
|
341
446
|
.elfinder-cwd
|
342
|
-
overflow: auto
|
343
447
|
position: relative
|
344
448
|
font-size: .7em
|
345
449
|
cursor: default
|
346
|
-
|
347
|
-
padding: 2px
|
450
|
+
padding: 0
|
348
451
|
margin: 0
|
349
|
-
|
350
|
-
|
452
|
+
-moz-user-select: -moz-none
|
453
|
+
-khtml-user-select: none
|
454
|
+
-webkit-user-select: none
|
455
|
+
user-select: none
|
351
456
|
|
352
|
-
|
353
|
-
|
354
|
-
.elfinder .elfinder-cwd.elfinder-droppable-active
|
457
|
+
.elfinder .elfinder-cwd-wrapper.elfinder-droppable-active
|
355
458
|
padding: 0
|
356
459
|
border: 2px solid #8cafed
|
357
460
|
|
358
|
-
/************************** ICONS VIEW *******************************
|
359
|
-
|
360
|
-
/* file container
|
361
|
-
|
362
461
|
.elfinder-cwd-view-icons .elfinder-cwd-file
|
363
|
-
width:
|
462
|
+
width: 120px
|
364
463
|
height: 80px
|
365
464
|
padding-bottom: 2px
|
366
465
|
cursor: default
|
367
466
|
overflow: hidden
|
368
|
-
/* font-family:verdana, trebuchet ms, arial,sans-serif;
|
369
|
-
|
370
|
-
/* ltr/rtl enviroment
|
371
467
|
|
372
468
|
.elfinder-ltr .elfinder-cwd-view-icons .elfinder-cwd-file
|
373
469
|
float: left
|
374
|
-
margin: 0 3px
|
470
|
+
margin: 0 3px 12px 0
|
375
471
|
|
376
472
|
.elfinder-rtl .elfinder-cwd-view-icons .elfinder-cwd-file
|
377
473
|
float: right
|
378
|
-
margin: 0 0
|
379
|
-
|
380
|
-
/* remove ui hover class border
|
474
|
+
margin: 0 0 5px 3px
|
381
475
|
|
382
476
|
.elfinder-cwd-view-icons
|
383
477
|
.elfinder-cwd-file .ui-state-hover
|
@@ -385,16 +479,16 @@
|
|
385
479
|
.elfinder-cwd-file-wrapper
|
386
480
|
width: 52px
|
387
481
|
height: 52px
|
388
|
-
margin: 1px auto
|
482
|
+
margin: 1px auto
|
389
483
|
padding: 2px
|
390
484
|
position: relative
|
391
485
|
.elfinder-cwd-filename
|
392
486
|
text-align: center
|
393
|
-
white-space:
|
487
|
+
white-space: pre
|
394
488
|
overflow: hidden
|
395
489
|
text-overflow: ellipsis
|
396
490
|
-o-text-overflow: ellipsis
|
397
|
-
margin: 3px 1px 0
|
491
|
+
margin: 3px 1px 0
|
398
492
|
padding: 1px
|
399
493
|
-moz-border-radius: 8px
|
400
494
|
-webkit-border-radius: 8px
|
@@ -404,15 +498,7 @@
|
|
404
498
|
right: 2px
|
405
499
|
.elfinder-symlink
|
406
500
|
bottom: 6px
|
407
|
-
left:
|
408
|
-
|
409
|
-
/* icon wrapper to create selected highlight around icon
|
410
|
-
|
411
|
-
/* file name place
|
412
|
-
|
413
|
-
/* permissions/symlink markers
|
414
|
-
|
415
|
-
/* icon/thumbnail
|
501
|
+
left: 0
|
416
502
|
|
417
503
|
.elfinder-cwd-icon
|
418
504
|
display: block
|
@@ -424,13 +510,9 @@
|
|
424
510
|
-webkit-background-clip: padding-box
|
425
511
|
background-clip: padding-box
|
426
512
|
|
427
|
-
/* 'opened folder' icon on dragover
|
428
|
-
|
429
513
|
.elfinder-cwd .elfinder-droppable-active .elfinder-cwd-icon
|
430
514
|
background-position: 0 -100px
|
431
515
|
|
432
|
-
/* mimetypes icons
|
433
|
-
|
434
516
|
.elfinder-cwd-icon-directory
|
435
517
|
background-position: 0 -50px
|
436
518
|
|
@@ -488,7 +570,7 @@
|
|
488
570
|
.elfinder-cwd-icon-xml
|
489
571
|
background-position: 0 -1000px
|
490
572
|
|
491
|
-
.elfinder-cwd-icon-zip, .elfinder-cwd-icon-x-7z-compressed
|
573
|
+
.elfinder-cwd-icon-zip, .elfinder-cwd-icon-x-zip, .elfinder-cwd-icon-x-7z-compressed
|
492
574
|
background-position: 0 -1050px
|
493
575
|
|
494
576
|
.elfinder-cwd-icon-x-gzip, .elfinder-cwd-icon-x-tar
|
@@ -506,11 +588,9 @@
|
|
506
588
|
.elfinder-cwd-icon-group
|
507
589
|
background-position: 0 -1300px
|
508
590
|
|
509
|
-
/* textfield inside icon
|
510
|
-
|
511
591
|
.elfinder-cwd input
|
512
592
|
width: 100%
|
513
|
-
border:
|
593
|
+
border: 0 solid
|
514
594
|
margin: 0
|
515
595
|
padding: 0
|
516
596
|
|
@@ -519,16 +599,11 @@
|
|
519
599
|
text-align: center
|
520
600
|
text-align: center
|
521
601
|
|
522
|
-
/************************************ LIST VIEW ***********************************
|
523
|
-
|
524
|
-
.elfinder-cwd-view-list
|
525
|
-
padding: 0 0 4px 0
|
526
|
-
|
527
602
|
.elfinder-cwd table
|
528
603
|
width: 100%
|
529
604
|
border-collapse: collapse
|
530
605
|
border: 0 solid
|
531
|
-
margin: 0
|
606
|
+
margin: 0 0 10px
|
532
607
|
|
533
608
|
.elfinder .elfinder-cwd table
|
534
609
|
thead
|
@@ -540,7 +615,7 @@
|
|
540
615
|
font-size: .9em
|
541
616
|
td
|
542
617
|
padding: 3px 12px
|
543
|
-
white-space:
|
618
|
+
white-space: pre
|
544
619
|
overflow: hidden
|
545
620
|
text-align: right
|
546
621
|
cursor: default
|
@@ -559,37 +634,27 @@
|
|
559
634
|
.elfinder-odd-row
|
560
635
|
background: #eee
|
561
636
|
|
562
|
-
/* filename container
|
563
|
-
|
564
637
|
.elfinder-cwd-view-list .elfinder-cwd-file-wrapper
|
565
638
|
width: 97%
|
566
639
|
position: relative
|
567
640
|
|
568
|
-
/* filename container in ltr/rtl enviroment
|
569
|
-
|
570
641
|
.elfinder-ltr .elfinder-cwd-view-list .elfinder-cwd-file-wrapper
|
571
642
|
padding-left: 23px
|
572
643
|
|
573
644
|
.elfinder-rtl .elfinder-cwd-view-list .elfinder-cwd-file-wrapper
|
574
645
|
padding-right: 23px
|
575
646
|
|
576
|
-
/* premissions/symlink marker
|
577
|
-
|
578
647
|
.elfinder-cwd-view-list
|
579
648
|
.elfinder-perms, .elfinder-symlink
|
580
649
|
top: 50%
|
581
650
|
margin-top: -6px
|
582
651
|
|
583
|
-
/* markers in ltr/rtl enviroment
|
584
|
-
|
585
652
|
.elfinder-ltr .elfinder-cwd-view-list
|
586
653
|
.elfinder-perms
|
587
654
|
left: 7px
|
588
655
|
.elfinder-symlink
|
589
656
|
left: -7px
|
590
657
|
|
591
|
-
/* file icon
|
592
|
-
|
593
658
|
.elfinder-cwd-view-list td .elfinder-cwd-icon
|
594
659
|
width: 16px
|
595
660
|
height: 16px
|
@@ -598,27 +663,18 @@
|
|
598
663
|
margin-top: -8px
|
599
664
|
background-image: image_url('el_vfs/elfinder/icons-small.png')
|
600
665
|
|
601
|
-
/* icon in ltr/rtl enviroment
|
602
|
-
|
603
666
|
.elfinder-ltr .elfinder-cwd-view-list .elfinder-cwd-icon
|
604
667
|
left: 0
|
605
668
|
|
606
669
|
.elfinder-rtl .elfinder-cwd-view-list .elfinder-cwd-icon
|
607
670
|
right: 0
|
608
671
|
|
609
|
-
/* File: /home/troex/Sites/git/elfinder-2.x/css/dialog.css
|
610
|
-
/********************************************
|
611
|
-
/* DIALOGS STYLES
|
612
|
-
/********************************************
|
613
|
-
|
614
|
-
/* common dialogs class
|
615
|
-
|
616
672
|
.std42-dialog
|
617
673
|
padding: 0
|
618
674
|
.ui-dialog-titlebar
|
619
|
-
border-left: 0 solid
|
620
|
-
border-top: 0 solid
|
621
|
-
border-right: 0 solid
|
675
|
+
border-left: 0 solid transparent
|
676
|
+
border-top: 0 solid transparent
|
677
|
+
border-right: 0 solid transparent
|
622
678
|
-moz-border-radius-bottomleft: 0
|
623
679
|
-webkit-border-bottom-left-radius: 0
|
624
680
|
border-bottom-left-radius: 0
|
@@ -626,23 +682,19 @@
|
|
626
682
|
-webkit-border-bottom-right-radius: 0
|
627
683
|
border-bottom-right-radius: 0
|
628
684
|
font-size: .82em
|
629
|
-
font-weight:
|
685
|
+
font-weight: 400
|
630
686
|
padding: .2em 1em
|
631
687
|
.ui-dialog-titlebar-close
|
632
688
|
padding: 1px
|
633
689
|
&:hover
|
634
690
|
padding: 1px
|
635
691
|
|
636
|
-
/* titlebar
|
637
|
-
|
638
692
|
.elfinder-rtl .elfinder-dialog .ui-dialog-titlebar
|
639
693
|
text-align: right
|
640
694
|
.ui-dialog-titlebar-close
|
641
695
|
right: auto
|
642
696
|
left: .3em
|
643
697
|
|
644
|
-
/* content
|
645
|
-
|
646
698
|
.std42-dialog
|
647
699
|
.ui-dialog-content
|
648
700
|
padding: .3em .5em
|
@@ -659,8 +711,6 @@
|
|
659
711
|
span
|
660
712
|
padding: 2px 9px
|
661
713
|
|
662
|
-
/* buttons
|
663
|
-
|
664
714
|
.elfinder-dialog
|
665
715
|
.ui-resizable-e, .ui-resizable-s
|
666
716
|
width: 0
|
@@ -669,23 +719,17 @@
|
|
669
719
|
.std42-dialog .ui-button input
|
670
720
|
cursor: pointer
|
671
721
|
|
672
|
-
/* error/notify/confirm dialogs icon
|
673
|
-
|
674
722
|
.elfinder-dialog-icon
|
675
|
-
|
723
|
+
float: left
|
676
724
|
width: 32px
|
677
725
|
height: 32px
|
678
|
-
left: 12px
|
679
|
-
top: 50%
|
680
|
-
margin-top: -15px
|
681
726
|
background: image_url('el_vfs/elfinder/dialogs.png') 0 0 no-repeat
|
727
|
+
margin: 0 10px 10px 0
|
682
728
|
|
683
729
|
.elfinder-rtl .elfinder-dialog-icon
|
684
730
|
left: auto
|
685
731
|
right: 12px
|
686
732
|
|
687
|
-
/*********************** ERROR DIALOG *************************
|
688
|
-
|
689
733
|
.elfinder-dialog-error .ui-dialog-content, .elfinder-dialog-confirm .ui-dialog-content
|
690
734
|
padding-left: 56px
|
691
735
|
min-height: 35px
|
@@ -695,16 +739,12 @@
|
|
695
739
|
padding-left: 0
|
696
740
|
padding-right: 56px
|
697
741
|
|
698
|
-
/*********************** NOTIFY DIALOG *************************
|
699
|
-
|
700
742
|
.elfinder-dialog-notify
|
701
743
|
.ui-dialog-titlebar-close
|
702
744
|
display: none
|
703
745
|
.ui-dialog-content
|
704
746
|
padding: 0
|
705
747
|
|
706
|
-
/* one notification container
|
707
|
-
|
708
748
|
.elfinder-notify
|
709
749
|
border-bottom: 1px solid #ccc
|
710
750
|
position: relative
|
@@ -721,8 +761,6 @@
|
|
721
761
|
.elfinder-notify:last-child
|
722
762
|
border: 0 solid
|
723
763
|
|
724
|
-
/* progressbar
|
725
|
-
|
726
764
|
.elfinder-notify-progressbar
|
727
765
|
width: 180px
|
728
766
|
height: 8px
|
@@ -741,8 +779,6 @@
|
|
741
779
|
-webkit-border-radius: 2px
|
742
780
|
border-radius: 2px
|
743
781
|
|
744
|
-
/* icons
|
745
|
-
|
746
782
|
.elfinder-dialog-icon-open, .elfinder-dialog-icon-file, .elfinder-dialog-icon-reload
|
747
783
|
background-position: 0 -225px
|
748
784
|
|
@@ -776,16 +812,12 @@
|
|
776
812
|
.elfinder-dialog-icon-search
|
777
813
|
background-position: 0 -402px
|
778
814
|
|
779
|
-
/*********************** CONFIRM DIALOG *************************
|
780
|
-
|
781
815
|
.elfinder-dialog-confirm-applyall
|
782
816
|
padding-top: 3px
|
783
817
|
|
784
818
|
.elfinder-dialog-confirm .elfinder-dialog-icon
|
785
819
|
background-position: 0 -32px
|
786
820
|
|
787
|
-
/*********************** FILE INFO DIALOG *************************
|
788
|
-
|
789
821
|
.elfinder-info-title
|
790
822
|
.elfinder-cwd-icon
|
791
823
|
float: left
|
@@ -794,12 +826,12 @@
|
|
794
826
|
margin-right: 1em
|
795
827
|
strong
|
796
828
|
display: block
|
797
|
-
padding: .3em 0 .5em
|
829
|
+
padding: .3em 0 .5em
|
798
830
|
|
799
831
|
.elfinder-info-tb
|
800
832
|
min-width: 200px
|
801
833
|
border: 0 solid
|
802
|
-
margin: 1em .2em
|
834
|
+
margin: 1em .2em
|
803
835
|
font-size: .9em
|
804
836
|
td
|
805
837
|
white-space: nowrap
|
@@ -821,8 +853,6 @@
|
|
821
853
|
background: image_url('el_vfs/elfinder/spinner-mini.gif') center center no-repeat
|
822
854
|
margin: 0 5px
|
823
855
|
|
824
|
-
/*********************** UPLOAD DIALOG *************************
|
825
|
-
|
826
856
|
.elfinder-upload-dropbox
|
827
857
|
font-size: 1.2em
|
828
858
|
text-align: center
|
@@ -852,13 +882,11 @@
|
|
852
882
|
padding: 0 20px
|
853
883
|
font-size: 3em
|
854
884
|
|
855
|
-
/* dialog for elFinder itself
|
856
|
-
|
857
885
|
.dialogelfinder .dialogelfinder-drag
|
858
886
|
border-left: 0 solid
|
859
887
|
border-top: 0 solid
|
860
888
|
border-right: 0 solid
|
861
|
-
font-weight:
|
889
|
+
font-weight: 400
|
862
890
|
font-size: .9em
|
863
891
|
padding: 2px 12px
|
864
892
|
cursor: move
|
@@ -879,13 +907,6 @@
|
|
879
907
|
.elfinder-rtl .dialogelfinder-drag-close
|
880
908
|
left: 12px
|
881
909
|
|
882
|
-
/* File: /home/troex/Sites/git/elfinder-2.x/css/navbar.css
|
883
|
-
/********************************************
|
884
|
-
/* NAVIGATION PANEL
|
885
|
-
/********************************************
|
886
|
-
|
887
|
-
/* container
|
888
|
-
|
889
910
|
.elfinder .elfinder-navbar
|
890
911
|
width: 230px
|
891
912
|
padding: 3px 5px
|
@@ -895,28 +916,27 @@
|
|
895
916
|
border-bottom: 0 solid
|
896
917
|
overflow: auto
|
897
918
|
display: none
|
898
|
-
|
899
|
-
|
900
|
-
|
919
|
+
position: relative
|
920
|
+
-moz-user-select: none
|
921
|
+
-khtml-user-select: none
|
922
|
+
-webkit-user-select: none
|
923
|
+
user-select: none
|
901
924
|
|
902
925
|
.elfinder-ltr .elfinder-navbar
|
903
926
|
float: left
|
904
927
|
border-left: 0 solid
|
905
|
-
padding-right: 10px
|
906
928
|
|
907
929
|
.elfinder-rtl .elfinder-navbar
|
908
930
|
float: right
|
909
931
|
border-right: 0 solid
|
910
|
-
padding-left: 10px
|
911
932
|
|
912
|
-
|
933
|
+
.elfinder-ltr .ui-resizable-e
|
934
|
+
margin-left: 10px
|
913
935
|
|
914
936
|
.elfinder-tree
|
915
937
|
display: table
|
916
938
|
width: 100%
|
917
|
-
margin: 0 0 .5em
|
918
|
-
|
919
|
-
/* folder
|
939
|
+
margin: 0 0 .5em
|
920
940
|
|
921
941
|
.elfinder-navbar-dir
|
922
942
|
position: relative
|
@@ -928,16 +948,12 @@
|
|
928
948
|
border: 1px solid transparent
|
929
949
|
cursor: default
|
930
950
|
|
931
|
-
/* ltr/rtl enviroment
|
932
|
-
|
933
951
|
.elfinder-ltr .elfinder-navbar-dir
|
934
952
|
padding-left: 35px
|
935
953
|
|
936
954
|
.elfinder-rtl .elfinder-navbar-dir
|
937
955
|
padding-right: 35px
|
938
956
|
|
939
|
-
/* arrow before icon
|
940
|
-
|
941
957
|
.elfinder-navbar-arrow
|
942
958
|
width: 12px
|
943
959
|
height: 14px
|
@@ -947,18 +963,13 @@
|
|
947
963
|
margin-top: -8px
|
948
964
|
background-image: image_url('el_vfs/elfinder/arrows-normal.png')
|
949
965
|
background-repeat: no-repeat
|
950
|
-
/* border:1px solid #111;
|
951
966
|
|
952
967
|
.ui-state-active .elfinder-navbar-arrow
|
953
968
|
background-image: image_url('el_vfs/elfinder/arrows-active.png')
|
954
969
|
|
955
|
-
/* collapsed/expanded arrow view
|
956
|
-
|
957
970
|
.elfinder-navbar-collapsed .elfinder-navbar-arrow
|
958
971
|
display: block
|
959
972
|
|
960
|
-
/* arrow ltr/rtl enviroment
|
961
|
-
|
962
973
|
.elfinder-ltr .elfinder-navbar-collapsed .elfinder-navbar-arrow
|
963
974
|
background-position: 0 4px
|
964
975
|
left: 0
|
@@ -967,11 +978,9 @@
|
|
967
978
|
background-position: 0 -10px
|
968
979
|
right: 0
|
969
980
|
|
970
|
-
.elfinder-ltr .elfinder-navbar-expanded.elfinder-navbar-arrow, .elfinder-rtl .elfinder-navbar-expanded.elfinder-navbar-arrow
|
981
|
+
.elfinder-ltr .elfinder-navbar-expanded .elfinder-navbar-arrow, .elfinder-rtl .elfinder-navbar-expanded .elfinder-navbar-arrow
|
971
982
|
background-position: 0 -21px
|
972
983
|
|
973
|
-
/* folder icon
|
974
|
-
|
975
984
|
.elfinder-navbar-icon
|
976
985
|
width: 16px
|
977
986
|
height: 16px
|
@@ -982,42 +991,30 @@
|
|
982
991
|
background-repeat: no-repeat
|
983
992
|
background-position: 0 -16px
|
984
993
|
|
985
|
-
/* ltr/rtl enviroment
|
986
|
-
|
987
994
|
.elfinder-ltr .elfinder-navbar-icon
|
988
995
|
left: 14px
|
989
996
|
|
990
997
|
.elfinder-rtl .elfinder-navbar-icon
|
991
998
|
right: 14px
|
992
999
|
|
993
|
-
/* root folder
|
994
|
-
|
995
1000
|
.elfinder-tree .elfinder-navbar-root .elfinder-navbar-icon
|
996
1001
|
background-position: 0 0
|
997
1002
|
|
998
1003
|
.elfinder-places .elfinder-navbar-root .elfinder-navbar-icon
|
999
1004
|
background-position: 0 -48px
|
1000
1005
|
|
1001
|
-
|
1002
|
-
|
1003
|
-
.ui-state-active .elfinder-navbar-icon, .elfinder-droppable-active .elfinder-navbar-icon, .ui-state-hover.elfinder-navbar-icon
|
1006
|
+
.ui-state-active .elfinder-navbar-icon, .elfinder-droppable-active .elfinder-navbar-icon, .ui-state-hover .elfinder-navbar-icon
|
1004
1007
|
background-position: 0 -32px
|
1005
1008
|
|
1006
|
-
/* subdirs tree
|
1007
|
-
|
1008
1009
|
.elfinder-navbar-subtree
|
1009
1010
|
display: none
|
1010
1011
|
|
1011
|
-
/* ltr/rtl enviroment
|
1012
|
-
|
1013
1012
|
.elfinder-ltr .elfinder-navbar-subtree
|
1014
1013
|
margin-left: 12px
|
1015
1014
|
|
1016
1015
|
.elfinder-rtl .elfinder-navbar-subtree
|
1017
1016
|
margin-right: 12px
|
1018
1017
|
|
1019
|
-
/* spinner
|
1020
|
-
|
1021
1018
|
.elfinder-navbar-spinner
|
1022
1019
|
width: 14px
|
1023
1020
|
height: 14px
|
@@ -1027,8 +1024,6 @@
|
|
1027
1024
|
margin-top: -7px
|
1028
1025
|
background: image_url('el_vfs/elfinder/spinner-mini.gif') center center no-repeat
|
1029
1026
|
|
1030
|
-
/* spinner ltr/rtl enviroment
|
1031
|
-
|
1032
1027
|
.elfinder-ltr .elfinder-navbar-spinner
|
1033
1028
|
left: 0
|
1034
1029
|
margin-left: -2px
|
@@ -1037,14 +1032,10 @@
|
|
1037
1032
|
right: 0
|
1038
1033
|
margin-right: -2px
|
1039
1034
|
|
1040
|
-
/* permissions marker
|
1041
|
-
|
1042
1035
|
.elfinder-navbar .elfinder-perms
|
1043
1036
|
top: 50%
|
1044
1037
|
margin-top: -8px
|
1045
1038
|
|
1046
|
-
/* permissions/symlink markers ltr/rtl enviroment
|
1047
|
-
|
1048
1039
|
.elfinder-ltr .elfinder-navbar .elfinder-perms
|
1049
1040
|
left: 18px
|
1050
1041
|
|
@@ -1057,22 +1048,15 @@
|
|
1057
1048
|
.elfinder-rtl .elfinder-navbar .elfinder-symlink
|
1058
1049
|
right: 8px
|
1059
1050
|
|
1060
|
-
/* resizable
|
1061
|
-
|
1062
1051
|
.elfinder-navbar .ui-resizable-handle
|
1063
1052
|
width: 12px
|
1064
|
-
background:
|
1065
|
-
|
1066
|
-
.elfinder-ltr .elfinder-navbar .ui-resizable-handle
|
1067
|
-
right: 0
|
1068
|
-
|
1069
|
-
.elfinder-rtl .elfinder-navbar .ui-resizable-handle
|
1053
|
+
background: image_url('el_vfs/elfinder/resize.png') center center no-repeat
|
1070
1054
|
left: 0
|
1071
1055
|
|
1072
1056
|
.elfinder-nav-handle-icon
|
1073
1057
|
position: absolute
|
1074
1058
|
top: 50%
|
1075
|
-
margin: -8px 2px 0
|
1059
|
+
margin: -8px 2px 0
|
1076
1060
|
opacity: .5
|
1077
1061
|
filter: Alpha(Opacity = 50)
|
1078
1062
|
|
@@ -1084,11 +1068,6 @@
|
|
1084
1068
|
.elfinder-place-drag .elfinder-navbar-dir
|
1085
1069
|
font-size: .9em
|
1086
1070
|
|
1087
|
-
/* File: /home/troex/Sites/git/elfinder-2.x/css/places.css
|
1088
|
-
|
1089
|
-
/* File: /home/troex/Sites/git/elfinder-2.x/css/quicklook.css
|
1090
|
-
/* quicklook window
|
1091
|
-
|
1092
1071
|
.elfinder-quicklook
|
1093
1072
|
position: absolute
|
1094
1073
|
background: image_url('el_vfs/elfinder/quicklook-bg.png')
|
@@ -1097,7 +1076,7 @@
|
|
1097
1076
|
border-radius: 7px
|
1098
1077
|
-moz-border-radius: 7px
|
1099
1078
|
-webkit-border-radius: 7px
|
1100
|
-
padding: 20px 0 40px
|
1079
|
+
padding: 20px 0 40px
|
1101
1080
|
.ui-resizable-se
|
1102
1081
|
width: 14px
|
1103
1082
|
height: 14px
|
@@ -1105,14 +1084,11 @@
|
|
1105
1084
|
bottom: 3px
|
1106
1085
|
background: image_url('el_vfs/elfinder/toolbar.png') 0 -496px no-repeat
|
1107
1086
|
|
1108
|
-
/* quicklook fullscreen window
|
1109
|
-
|
1110
1087
|
.elfinder-quicklook-fullscreen
|
1111
1088
|
border-radius: 0
|
1112
1089
|
-moz-border-radius: 0
|
1113
1090
|
-webkit-border-radius: 0
|
1114
1091
|
-webkit-background-clip: padding-box
|
1115
|
-
/* background-clip:padding-box;
|
1116
1092
|
padding: 0
|
1117
1093
|
background: #000
|
1118
1094
|
z-index: 90000
|
@@ -1122,12 +1098,6 @@
|
|
1122
1098
|
.elfinder-quicklook-preview
|
1123
1099
|
border: 0 solid
|
1124
1100
|
|
1125
|
-
/* hide titlebar in fullscreen mode
|
1126
|
-
|
1127
|
-
/* hide preview border in fullscreen mode
|
1128
|
-
|
1129
|
-
/* quicklook titlebar
|
1130
|
-
|
1131
1101
|
.elfinder-quicklook-titlebar
|
1132
1102
|
text-align: center
|
1133
1103
|
background: #777
|
@@ -1144,8 +1114,6 @@
|
|
1144
1114
|
border-top-right-radius: 7px
|
1145
1115
|
cursor: move
|
1146
1116
|
|
1147
|
-
/* window title
|
1148
|
-
|
1149
1117
|
.elfinder-quicklook-title
|
1150
1118
|
font-size: .7em
|
1151
1119
|
color: #fff
|
@@ -1153,8 +1121,6 @@
|
|
1153
1121
|
overflow: hidden
|
1154
1122
|
padding: 2px 0
|
1155
1123
|
|
1156
|
-
/* icon 'close' in titlebar
|
1157
|
-
|
1158
1124
|
.elfinder-quicklook-titlebar .ui-icon
|
1159
1125
|
position: absolute
|
1160
1126
|
left: 4px
|
@@ -1164,8 +1130,6 @@
|
|
1164
1130
|
height: 16px
|
1165
1131
|
cursor: default
|
1166
1132
|
|
1167
|
-
/* main part of quicklook window
|
1168
|
-
|
1169
1133
|
.elfinder-quicklook-preview
|
1170
1134
|
overflow: hidden
|
1171
1135
|
position: relative
|
@@ -1174,8 +1138,6 @@
|
|
1174
1138
|
border-right: 1px solid transparent
|
1175
1139
|
height: 100%
|
1176
1140
|
|
1177
|
-
/* wrapper for file info/icon
|
1178
|
-
|
1179
1141
|
.elfinder-quicklook-info-wrapper
|
1180
1142
|
position: absolute
|
1181
1143
|
width: 100%
|
@@ -1183,55 +1145,41 @@
|
|
1183
1145
|
top: 50%
|
1184
1146
|
margin-top: -50px
|
1185
1147
|
|
1186
|
-
/* file info
|
1187
|
-
|
1188
1148
|
.elfinder-quicklook-info
|
1189
1149
|
padding: 0 12px 0 112px
|
1190
1150
|
.elfinder-quicklook-info-data:first-child
|
1191
1151
|
color: #fff
|
1192
|
-
font-weight:
|
1152
|
+
font-weight: 700
|
1193
1153
|
padding-bottom: .5em
|
1194
1154
|
|
1195
|
-
/* file name in info
|
1196
|
-
|
1197
|
-
/* other data in info
|
1198
|
-
|
1199
1155
|
.elfinder-quicklook-info-data
|
1200
1156
|
font-size: .72em
|
1201
1157
|
padding-bottom: .2em
|
1202
1158
|
color: #fff
|
1203
1159
|
|
1204
|
-
/* file icon
|
1205
|
-
|
1206
1160
|
.elfinder-quicklook .elfinder-cwd-icon
|
1207
1161
|
position: absolute
|
1208
1162
|
left: 32px
|
1209
1163
|
top: 50%
|
1210
1164
|
margin-top: -20px
|
1211
1165
|
|
1212
|
-
/* image in preview
|
1213
|
-
|
1214
1166
|
.elfinder-quicklook-preview img
|
1215
1167
|
display: block
|
1216
1168
|
margin: 0 auto
|
1217
1169
|
|
1218
|
-
/* navigation bar on quicklook window bottom
|
1219
|
-
|
1220
1170
|
.elfinder-quicklook-navbar
|
1221
1171
|
position: absolute
|
1222
1172
|
left: 50%
|
1223
1173
|
bottom: 4px
|
1224
1174
|
width: 140px
|
1225
1175
|
height: 32px
|
1226
|
-
padding:
|
1176
|
+
padding: 0
|
1227
1177
|
margin-left: -70px
|
1228
1178
|
border: 1px solid transparent
|
1229
1179
|
border-radius: 19px
|
1230
1180
|
-moz-border-radius: 19px
|
1231
1181
|
-webkit-border-radius: 19px
|
1232
1182
|
|
1233
|
-
/* navigation bar in fullscreen mode
|
1234
|
-
|
1235
1183
|
.elfinder-quicklook-fullscreen
|
1236
1184
|
.elfinder-quicklook-navbar
|
1237
1185
|
width: 188px
|
@@ -1242,10 +1190,6 @@
|
|
1242
1190
|
.elfinder-quicklook-navbar-icon-close, .elfinder-quicklook-navbar-separator
|
1243
1191
|
display: inline
|
1244
1192
|
|
1245
|
-
/* show close icon in fullscreen mode
|
1246
|
-
|
1247
|
-
/* icons in navbar
|
1248
|
-
|
1249
1193
|
.elfinder-quicklook-navbar-icon
|
1250
1194
|
width: 32px
|
1251
1195
|
height: 32px
|
@@ -1253,34 +1197,22 @@
|
|
1253
1197
|
float: left
|
1254
1198
|
background: image_url('el_vfs/elfinder/quicklook-icons.png') 0 0 no-repeat
|
1255
1199
|
|
1256
|
-
/* fullscreen icon
|
1257
|
-
|
1258
1200
|
.elfinder-quicklook-navbar-icon-fullscreen
|
1259
1201
|
background-position: 0 -64px
|
1260
1202
|
|
1261
|
-
/* exit fullscreen icon
|
1262
|
-
|
1263
1203
|
.elfinder-quicklook-navbar-icon-fullscreen-off
|
1264
1204
|
background-position: 0 -96px
|
1265
1205
|
|
1266
|
-
/* prev file icon
|
1267
|
-
|
1268
1206
|
.elfinder-quicklook-navbar-icon-prev
|
1269
1207
|
background-position: 0 0
|
1270
1208
|
|
1271
|
-
/* next file icon
|
1272
|
-
|
1273
1209
|
.elfinder-quicklook-navbar-icon-next
|
1274
1210
|
background-position: 0 -32px
|
1275
1211
|
|
1276
|
-
/* close icon
|
1277
|
-
|
1278
1212
|
.elfinder-quicklook-navbar-icon-close
|
1279
1213
|
background-position: 0 -128px
|
1280
1214
|
display: none
|
1281
1215
|
|
1282
|
-
/* icons separator
|
1283
|
-
|
1284
1216
|
.elfinder-quicklook-navbar-separator
|
1285
1217
|
width: 1px
|
1286
1218
|
height: 32px
|
@@ -1288,8 +1220,6 @@
|
|
1288
1220
|
border-left: 1px solid #fff
|
1289
1221
|
display: none
|
1290
1222
|
|
1291
|
-
/* text files preview wrapper
|
1292
|
-
|
1293
1223
|
.elfinder-quicklook-preview-text-wrapper
|
1294
1224
|
width: 100%
|
1295
1225
|
height: 100%
|
@@ -1298,14 +1228,10 @@
|
|
1298
1228
|
font-size: .9em
|
1299
1229
|
overflow: auto
|
1300
1230
|
|
1301
|
-
/* text preview
|
1302
|
-
|
1303
1231
|
pre.elfinder-quicklook-preview-text
|
1304
1232
|
margin: 0
|
1305
1233
|
padding: 3px 9px
|
1306
1234
|
|
1307
|
-
/* html/pdf preview
|
1308
|
-
|
1309
1235
|
.elfinder-quicklook-preview-html, .elfinder-quicklook-preview-pdf
|
1310
1236
|
width: 100%
|
1311
1237
|
height: 100%
|
@@ -1313,91 +1239,77 @@ pre.elfinder-quicklook-preview-text
|
|
1313
1239
|
border: 0 solid
|
1314
1240
|
margin: 0
|
1315
1241
|
|
1316
|
-
/* swf preview container
|
1317
|
-
|
1318
1242
|
.elfinder-quicklook-preview-flash
|
1319
1243
|
width: 100%
|
1320
1244
|
height: 100%
|
1321
1245
|
|
1322
|
-
/* audio preview container
|
1323
|
-
|
1324
1246
|
.elfinder-quicklook-preview-audio
|
1325
1247
|
width: 100%
|
1326
1248
|
position: absolute
|
1327
1249
|
bottom: 0
|
1328
1250
|
left: 0
|
1329
1251
|
|
1330
|
-
/* audio preview using embed
|
1331
|
-
|
1332
1252
|
embed.elfinder-quicklook-preview-audio
|
1333
1253
|
height: 30px
|
1334
|
-
background:
|
1335
|
-
|
1336
|
-
/* video preview container
|
1254
|
+
background: 0 0
|
1337
1255
|
|
1338
1256
|
.elfinder-quicklook-preview-video
|
1339
1257
|
width: 100%
|
1340
1258
|
height: 100%
|
1341
1259
|
|
1342
|
-
/* File: /home/troex/Sites/git/elfinder-2.x/css/statusbar.css
|
1343
|
-
/*****************************************************************
|
1344
|
-
/* STATUSBAR STYLES
|
1345
|
-
/*****************************************************************
|
1346
|
-
|
1347
|
-
/* statusbar container
|
1348
|
-
|
1349
1260
|
.elfinder-statusbar
|
1350
1261
|
text-align: center
|
1351
|
-
font-weight:
|
1262
|
+
font-weight: 400
|
1352
1263
|
padding: .2em .5em
|
1353
|
-
border-right: 0 solid
|
1354
|
-
border-bottom: 0 solid
|
1355
|
-
border-left: 0 solid
|
1264
|
+
border-right: 0 solid transparent
|
1265
|
+
border-bottom: 0 solid transparent
|
1266
|
+
border-left: 0 solid transparent
|
1356
1267
|
a
|
1357
1268
|
text-decoration: none
|
1358
1269
|
div
|
1359
1270
|
font-size: .7em
|
1360
1271
|
|
1361
|
-
|
1272
|
+
.elfinder-path
|
1273
|
+
max-width: 30%
|
1274
|
+
white-space: nowrap
|
1275
|
+
overflow: hidden
|
1276
|
+
text-overflow: ellipsis
|
1277
|
+
-o-text-overflow: ellipsis
|
1362
1278
|
|
1363
1279
|
.elfinder-ltr .elfinder-path
|
1364
1280
|
float: left
|
1365
1281
|
|
1366
|
-
.elfinder-rtl .elfinder-path
|
1282
|
+
.elfinder-rtl .elfinder-path
|
1367
1283
|
float: right
|
1368
1284
|
|
1369
|
-
|
1285
|
+
.elfinder-stat-size
|
1286
|
+
white-space: nowrap
|
1287
|
+
|
1288
|
+
.elfinder-ltr .elfinder-stat-size
|
1289
|
+
float: right
|
1370
1290
|
|
1371
1291
|
.elfinder-rtl .elfinder-stat-size
|
1372
1292
|
float: left
|
1373
1293
|
|
1374
|
-
|
1375
|
-
|
1376
|
-
|
1377
|
-
/********************************************
|
1378
|
-
/* toolbar container
|
1294
|
+
.elfinder-stat-selected
|
1295
|
+
white-space: nowrap
|
1296
|
+
overflow: hidden
|
1379
1297
|
|
1380
1298
|
.elfinder-toolbar
|
1381
|
-
padding: 4px 0 3px
|
1382
|
-
border-left: 0 solid
|
1383
|
-
border-top: 0 solid
|
1384
|
-
border-right: 0 solid
|
1385
|
-
|
1386
|
-
/* container for button's group
|
1299
|
+
padding: 4px 0 3px
|
1300
|
+
border-left: 0 solid transparent
|
1301
|
+
border-top: 0 solid transparent
|
1302
|
+
border-right: 0 solid transparent
|
1387
1303
|
|
1388
1304
|
.elfinder-buttonset
|
1389
1305
|
margin: 1px 4px
|
1390
1306
|
float: left
|
1391
|
-
background:
|
1307
|
+
background: 0 0
|
1392
1308
|
padding: 0
|
1393
1309
|
-moz-border-radius: 4px
|
1394
1310
|
-webkit-border-radius: 4px
|
1395
1311
|
border-radius: 4px
|
1396
1312
|
|
1397
|
-
/*.elfinder-buttonset:first-child { margin:0; }
|
1398
|
-
|
1399
|
-
/* button
|
1400
|
-
|
1401
1313
|
.elfinder
|
1402
1314
|
.elfinder-button
|
1403
1315
|
width: 16px
|
@@ -1427,8 +1339,6 @@ embed.elfinder-quicklook-preview-audio
|
|
1427
1339
|
-webkit-border-bottom-right-radius: 4px
|
1428
1340
|
border-bottom-right-radius: 4px
|
1429
1341
|
|
1430
|
-
/* separator between buttons, required for berder between button with ui color
|
1431
|
-
|
1432
1342
|
.elfinder-toolbar-button-separator
|
1433
1343
|
float: left
|
1434
1344
|
padding: 0
|
@@ -1438,8 +1348,6 @@ embed.elfinder-quicklook-preview-audio
|
|
1438
1348
|
border-bottom: 0 solid
|
1439
1349
|
width: 0
|
1440
1350
|
|
1441
|
-
/* change icon opacity^ not button
|
1442
|
-
|
1443
1351
|
.elfinder .elfinder-button.ui-state-disabled
|
1444
1352
|
opacity: 1
|
1445
1353
|
filter: Alpha(Opacity = 100)
|
@@ -1447,21 +1355,15 @@ embed.elfinder-quicklook-preview-audio
|
|
1447
1355
|
opacity: .4
|
1448
1356
|
filter: Alpha(Opacity = 40)
|
1449
1357
|
|
1450
|
-
/* rtl enviroment
|
1451
|
-
|
1452
1358
|
.elfinder-rtl .elfinder-buttonset
|
1453
1359
|
float: right
|
1454
1360
|
|
1455
|
-
/* icon inside button
|
1456
|
-
|
1457
1361
|
.elfinder-button-icon
|
1458
1362
|
width: 16px
|
1459
1363
|
height: 16px
|
1460
1364
|
display: block
|
1461
1365
|
background: image_url('el_vfs/elfinder/toolbar.png') no-repeat
|
1462
1366
|
|
1463
|
-
/* buttons icons
|
1464
|
-
|
1465
1367
|
.elfinder-button-icon-home
|
1466
1368
|
background-position: 0 0
|
1467
1369
|
|
@@ -1540,33 +1442,52 @@ embed.elfinder-quicklook-preview-audio
|
|
1540
1442
|
.elfinder-button-icon-resize
|
1541
1443
|
background-position: 0 -512px
|
1542
1444
|
|
1543
|
-
|
1445
|
+
.elfinder-button-icon-search
|
1446
|
+
background-position: 0 -561px
|
1447
|
+
|
1448
|
+
.elfinder-button-icon-sort
|
1449
|
+
background-position: 0 -577px
|
1450
|
+
|
1451
|
+
.elfinder-button-icon-rotate-r
|
1452
|
+
background-position: 0 -625px
|
1453
|
+
|
1454
|
+
.elfinder-button-icon-rotate-l
|
1455
|
+
background-position: 0 -641px
|
1544
1456
|
|
1545
1457
|
.elfinder .elfinder-menubutton
|
1546
1458
|
overflow: visible
|
1547
1459
|
|
1548
|
-
/* menu
|
1549
|
-
|
1550
1460
|
.elfinder-button-menu
|
1551
1461
|
position: absolute
|
1552
1462
|
left: 0
|
1553
1463
|
top: 26px
|
1554
1464
|
padding: 3px 0
|
1555
1465
|
|
1556
|
-
/* menu item
|
1557
|
-
|
1558
1466
|
.elfinder-button-menu-item
|
1559
1467
|
white-space: nowrap
|
1560
1468
|
font-size: .72em
|
1561
1469
|
cursor: default
|
1562
1470
|
padding: 5px 19px
|
1563
|
-
|
1564
|
-
/* fix hover ui class
|
1471
|
+
position: relative
|
1565
1472
|
|
1566
1473
|
.elfinder-button-menu .ui-state-hover
|
1567
1474
|
border: 0 solid
|
1568
1475
|
|
1569
|
-
|
1476
|
+
.elfinder-menu-item-sort-dir
|
1477
|
+
width: 16px
|
1478
|
+
height: 16px
|
1479
|
+
position: absolute
|
1480
|
+
left: 2px
|
1481
|
+
top: 50%
|
1482
|
+
margin-top: -8px
|
1483
|
+
background: image_url('el_vfs/elfinder/toolbar.png') 0 -594px no-repeat
|
1484
|
+
display: none
|
1485
|
+
|
1486
|
+
.elfinder-button-menu-item-selected .elfinder-menu-item-sort-dir
|
1487
|
+
display: block
|
1488
|
+
|
1489
|
+
.elfinder-menu-item-sort-desc .elfinder-menu-item-sort-dir
|
1490
|
+
background-position: 0 -608px
|
1570
1491
|
|
1571
1492
|
.elfinder-button form
|
1572
1493
|
position: absolute
|
@@ -1578,21 +1499,18 @@ embed.elfinder-quicklook-preview-audio
|
|
1578
1499
|
|
1579
1500
|
.elfinder
|
1580
1501
|
.elfinder-button form input
|
1581
|
-
background:
|
1502
|
+
background: 0 0
|
1582
1503
|
cursor: default
|
1583
1504
|
.elfinder-button-search
|
1584
1505
|
border: 0 solid
|
1585
|
-
background:
|
1506
|
+
background: 0 0
|
1586
1507
|
padding: 0
|
1587
1508
|
margin: 1px 4px
|
1588
1509
|
height: auto
|
1510
|
+
min-height: 26px
|
1589
1511
|
float: right
|
1590
1512
|
width: 202px
|
1591
1513
|
|
1592
|
-
/* search 'button'
|
1593
|
-
|
1594
|
-
/* ltr/rte enviroment
|
1595
|
-
|
1596
1514
|
.elfinder-ltr .elfinder-button-search
|
1597
1515
|
float: right
|
1598
1516
|
margin-right: 10px
|
@@ -1601,15 +1519,12 @@ embed.elfinder-quicklook-preview-audio
|
|
1601
1519
|
float: left
|
1602
1520
|
margin-left: 10px
|
1603
1521
|
|
1604
|
-
/* search text field
|
1605
|
-
|
1606
1522
|
.elfinder-button-search input
|
1607
1523
|
width: 160px
|
1608
1524
|
height: 22px
|
1609
1525
|
padding: 0 20px
|
1610
1526
|
font-size: .8em
|
1611
1527
|
line-height: 22px
|
1612
|
-
border: 0 solid
|
1613
1528
|
border: 1px solid #aaa
|
1614
1529
|
-moz-border-radius: 12px
|
1615
1530
|
-webkit-border-radius: 12px
|
@@ -1619,18 +1534,14 @@ embed.elfinder-quicklook-preview-audio
|
|
1619
1534
|
.elfinder-rtl .elfinder-button-search input
|
1620
1535
|
direction: rtl
|
1621
1536
|
|
1622
|
-
/* icons
|
1623
|
-
|
1624
1537
|
.elfinder-button-search .ui-icon
|
1625
1538
|
position: absolute
|
1626
1539
|
height: 18px
|
1627
1540
|
top: 50%
|
1628
|
-
margin: -
|
1541
|
+
margin: -9px 4px 0
|
1629
1542
|
opacity: .6
|
1630
1543
|
filter: Alpha(Opacity = 60)
|
1631
1544
|
|
1632
|
-
/* search/close icons
|
1633
|
-
|
1634
1545
|
.elfinder-ltr .elfinder-button-search .ui-icon-search
|
1635
1546
|
left: 0
|
1636
1547
|
|