mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
* split interfaces * angular cli demo refactoring * fix test import * fix demo script * fix demo script * fix demo script * fix demo script
54 lines
1.4 KiB
HTML
54 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>ACS APS ADF Application with Angular CLI</title>
|
|
<base href="./">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" type="image/png" href="favicon-96x96.png" sizes="96x96">
|
|
<link href="https://fonts.googleapis.com/css?family=Muli" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
|
|
<style>
|
|
body, html {
|
|
height: 100%;
|
|
}
|
|
|
|
.loader-container {
|
|
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
|
|
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
|
|
display: -webkit-flex; /* NEW - Chrome */
|
|
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
|
|
-webkit-box-flex-direction: row;
|
|
-moz-box-flex-direction: row;
|
|
-webkit-flex-direction: row;
|
|
flex-direction: row;
|
|
height:100%;
|
|
}
|
|
|
|
.loader-item {
|
|
margin: auto;
|
|
max-height:100px;
|
|
max-width:300px;
|
|
}
|
|
|
|
.loader-text{
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body class="adf-background-color">
|
|
<app-root>
|
|
<div id="loader-container" class="loader-container">
|
|
<div class="loader-item">
|
|
<div id="loader-text" class="loader-text">Loading Demo Shell..</div>
|
|
</div>
|
|
</div>
|
|
</app-root>
|
|
</body>
|
|
</html>
|