Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix assets syntax errors #4

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Fixing other occurences of 'alpha(opacity:'.
  • Loading branch information
Radan Skoric committed Jan 23, 2013
commit 22e7dacbf5ef12e4ba77085afad1e62d393134cc
6 changes: 3 additions & 3 deletions app/assets/stylesheets/bcms_kcfinder/browse.css
Original file line number Diff line number Diff line change
@@ -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 {
@@ -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 {
@@ -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
@@ -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) {
@@ -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;
2 changes: 1 addition & 1 deletion vendor/assets/javascript/kcfinder/js/browser/misc.js
Original file line number Diff line number Diff line change
@@ -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
@@ -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;
}