mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-22 14:39:28 +00:00
a075cc26b3
- Added public/js/AjaxLib.js to perform Ajax calls via JS - Added public/css/AjaxLib.css to configure the veil used in AjaxLib via CSS - Added public/images/loader.gif to be used with the veil in AjaxLib - Added to FHC-Header the possibility to include the AjaxLib (ajaxlib = true)
15 lines
282 B
CSS
15 lines
282 B
CSS
.veil {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 98%;
|
|
width: 99%;
|
|
background-color: white;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: black;
|
|
background-image: url("/public/imgages/loader.gif");
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|