mirror of
https://github.com/janeczku/calibre-web.git
synced 2024-11-26 08:51:05 +02:00
UL positioning
This commit is contained in:
parent
4988e3b631
commit
c620453ebf
@ -226,6 +226,17 @@ return $(this).text().replace(/^\s+|^\t+|\t+|\s+$/g, "");
|
|||||||
$( '.readinbrowser-drop' ).attr("style", "left: " + position + "px !important; right: auto; top: " + topPos + "px");
|
$( '.readinbrowser-drop' ).attr("style", "left: " + position + "px !important; right: auto; top: " + topPos + "px");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( $( '#sendbtn2' ).length > 0 ) {
|
||||||
|
position = $( '#sendbtn2' ).offset().left
|
||||||
|
if ( position + $( '.sendtokindle-drop' ).width() > $( window ).width() ) {
|
||||||
|
positionOff = position + $( '.sendtokindle-drop' ).width() - $( window ).width();
|
||||||
|
ribPosition = position - positionOff - 5
|
||||||
|
$( '.sendtokindle-drop' ).attr("style", "left: " + ribPosition + "px !important; right: auto; top: " + topPos + "px");
|
||||||
|
} else {
|
||||||
|
$( '.sendtokindle-drop' ).attr("style", "left: " + position + "px !important; right: auto; top: " + topPos + "px");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ( $( '.downloadBtn' ).length > 0 ) {
|
if ( $( '.downloadBtn' ).length > 0 ) {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user