Fixed scrolling over jgrowl

This commit is contained in:
benweet 2013-10-13 16:52:00 +01:00
parent d9e80885b0
commit 1f513d7218
2 changed files with 6 additions and 3 deletions

View File

@ -139,7 +139,7 @@ a {
}
.close {
.transition(~"opacity ease-in-out .15s");
.transition(opacity ease-in-out .15s);
}
.list-group .nav {
@ -1293,10 +1293,13 @@ input[type="file"] {
div.jGrowl {
z-index: 1040;
font-size: inherit;
&.bottom-right {
right: 30px;
}
div.jGrowl-notification, div.jGrowl-closer {
background-color: @jgrowl-bg-color;
width: @jgrowl-width;
margin: 20px 30px;
margin: 20px 0;
padding: 15px 20px;
-ms-filter: none;
filter: none;

View File

@ -72,7 +72,7 @@ define([
if(value === undefined) {
return undefined;
}
value = parseInt(value);
value = parseInt(value, 10);
if(isNaN(value) || (min !== undefined && value < min) || (max !== undefined && value > max)) {
inputError(element, event);
return undefined;