mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 01:05:39 +02:00
Added button for close error popup - #4154
This commit is contained in:
parent
73a421db14
commit
56ffa6b056
@ -77,7 +77,23 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#opacity{
|
#opacity{
|
||||||
background:black;opacity:0.1;left:0px;top:0px;width:100%;height:100%;
|
background:black;
|
||||||
|
opacity:0.1;
|
||||||
|
left:0px;
|
||||||
|
top:0px;
|
||||||
|
width:100%;
|
||||||
|
height:100%;
|
||||||
|
position: fixed;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.modalclose {
|
||||||
|
text-align: right;
|
||||||
|
float: right;
|
||||||
|
padding-right: 11px;
|
||||||
|
padding-top: 11px;
|
||||||
|
vertical-align: middle;
|
||||||
|
cursor:pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
@ -88,8 +104,9 @@ background:black;opacity:0.1;left:0px;top:0px;width:100%;height:100%;
|
|||||||
|
|
||||||
<div class='modalheade'>
|
<div class='modalheade'>
|
||||||
<span class='modalheadertex'>
|
<span class='modalheadertex'>
|
||||||
<?php echo __('Database error'); ?>
|
<?php echo __('Database error'); ?>
|
||||||
</span>
|
</span>
|
||||||
|
<img class='modalclose' src='<?php echo $config['homeurl']; ?>images/icono_cerrar.png'>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class='modalconten'>
|
<div class='modalconten'>
|
||||||
@ -101,7 +118,7 @@ background:black;opacity:0.1;left:0px;top:0px;width:100%;height:100%;
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<a href='https://wiki.pandorafms.com/index.php?title=Pandora:Documentation_en:Configuration' target='_blank'>
|
<a href='https://wiki.pandorafms.com/index.php?title=Pandora:Documentation_en:Configuration' target='_blank'>
|
||||||
<div class='modalwikibutto cerrar'>
|
<div class='modalwikibutto'>
|
||||||
<span class='modalwikibuttontex'> <?php echo __('Documentation'); ?></span>
|
<span class='modalwikibuttontex'> <?php echo __('Documentation'); ?></span>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
@ -110,4 +127,13 @@ background:black;opacity:0.1;left:0px;top:0px;width:100%;height:100%;
|
|||||||
<div id="opacity"></div>
|
<div id="opacity"></div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
$(".modalclose").click(function(){
|
||||||
|
$('div#alert_messages_na').toggle();
|
||||||
|
$('div#opacity').toggle();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user