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