Fixed scrolling over jgrowl
This commit is contained in:
parent
d9e80885b0
commit
1f513d7218
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user