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

View File

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