mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-12 00:45:34 +00:00
Merge branch 'seeddms-5.0.x' into seeddms-5.1.x
This commit is contained in:
commit
f3b5af1c43
|
@ -255,8 +255,12 @@ span.openpopupbox {
|
||||||
}
|
}
|
||||||
|
|
||||||
div.popupbox {
|
div.popupbox {
|
||||||
|
margin-top: 5px;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
color: black;
|
||||||
|
text-align: left;
|
||||||
|
text-shadow: none;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
display: none;
|
display: none;
|
||||||
|
|
|
@ -993,6 +993,9 @@ $(document).ready(function() { /* {{{ */
|
||||||
$("body").on("click", "span.openpopupbox", function(e) {
|
$("body").on("click", "span.openpopupbox", function(e) {
|
||||||
$(""+$(e.target).data("href")).toggle();
|
$(""+$(e.target).data("href")).toggle();
|
||||||
});
|
});
|
||||||
|
$("body").on("click", "span.openpopupbox i", function(e) {
|
||||||
|
$(e.target).parent().click();
|
||||||
|
});
|
||||||
$("body").on("click", "span.closepopupbox", function(e) {
|
$("body").on("click", "span.closepopupbox", function(e) {
|
||||||
$(this).parent().hide();
|
$(this).parent().hide();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user