Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/assets/stylesheets/bcms_kcfinder/browse.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ tr.file>td.time, tr.file>td.size {
position: absolute;
overflow: hidden;
opacity: 0;
filter: alpha(opacity:0)
filter: alpha(opacity=0)
}

#upload input {
Expand Down Expand Up @@ -169,7 +169,7 @@ span.brace.opened, span.brace.closed {
background: #000;
z-index: 100;
opacity: 0.7;
filter: alpha(opacity:50)
filter: alpha(opacity=50)
}

#dialog, #clipboard, #alert {
Expand Down Expand Up @@ -231,5 +231,5 @@ span.brace.opened, span.brace.closed {
top: 0;
background: #000;
opacity: 0;
filter: alpha(opacity:0)
filter: alpha(opacity=0)
}
4 changes: 2 additions & 2 deletions vendor/assets/javascript/kcfinder/js/browser/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ browser.initResizer = function() {
var cursor = ($.browser.opera) ? 'move' : 'col-resize';
$('#resizer').css('cursor', cursor);
$('#resizer').drag('start', function() {
$(this).css({opacity:'0.4', filter:'alpha(opacity:40)'});
$(this).css({opacity:'0.4', filter:'alpha(opacity=40)'});
$('#all').css('cursor', cursor);
});
$('#resizer').drag(function(e) {
Expand All @@ -140,7 +140,7 @@ browser.initResizer = function() {
$(this).css('left', left);
});
var end = function() {
$(this).css({opacity:'0', filter:'alpha(opacity:0)'});
$(this).css({opacity:'0', filter:'alpha(opacity=0)'});
$('#all').css('cursor', '');
var left = _.nopx($(this).css('left')) + _.nopx($(this).css('width'));
var right = $(window).width() - left;
Expand Down
2 changes: 1 addition & 1 deletion vendor/assets/javascript/kcfinder/js/browser/misc.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,6 @@ browser.post = function(url, data) {
browser.fadeFiles = function() {
$('#files > div').css({
opacity: '0.4',
filter: 'alpha(opacity:40)'
filter: 'alpha(opacity=40)'
});
};
2 changes: 1 addition & 1 deletion vendor/assets/javascript/kcfinder/themes/dark/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ tr.selected:hover > td {
a.denied {
color: #666;
opacity: 0.5;
filter: alpha(opacity:50);
filter: alpha(opacity=50);
cursor: default;
}

Expand Down
2 changes: 1 addition & 1 deletion vendor/assets/javascript/kcfinder/themes/oxygen/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ tr.selected:hover > td {
a.denied {
color: #666;
opacity: 0.5;
filter: alpha(opacity:50);
filter: alpha(opacity=50);
cursor: default;
}

Expand Down