mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 18:01:23 -06:00
6a8eeff22d
To update install/ui/css/patternfly.css you should: 1. clone Bootstrap 3, Font-Awesome, Bootstrap-Select and PatternFly to the same parent directory as for FreeIPA (or use symlinks) 2. checkout desired versions of each component 3. run install/ui/util/make-patternfly.css 4. when changing component versions, copy xxx/variables.less from each component to install/ui/less/xxx/ so we can use the variables in our less files This commit contain css made from component versions as follows: - PatternFly: 0.2.5 - Bootstrap: 3.1.1 - Bootstrap-select: 1.4.3 - Font-Awesome: 4.0.3 Reviewed-By: Endi Sukma Dewata <edewata@redhat.com>
64 lines
1.8 KiB
HTML
64 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>IPA: Identity Policy Audit</title>
|
|
|
|
<!--[if IE]>
|
|
<meta id="ie-detector">
|
|
<![endif]-->
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script type="text/javascript" src="js/libs/loader.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
var dojoConfig = {
|
|
baseUrl: "js",
|
|
has: {
|
|
'dojo-firebug': false,
|
|
'dojo-debug-messages': true
|
|
},
|
|
parseOnLoad: false,
|
|
async: true,
|
|
packages: [
|
|
{
|
|
name:'dojo',
|
|
location:'dojo'
|
|
},
|
|
{
|
|
name: 'freeipa',
|
|
location: 'freeipa'
|
|
}
|
|
],
|
|
cacheBust: ipa_loader.num_version || ""
|
|
};
|
|
|
|
(function() {
|
|
var ie = !!document.getElementById('ie-detector');
|
|
var styles = ['css/patternfly.css', 'css/ipa.css', 'ipa.css'];
|
|
if (ie) styles.push('ie.css');
|
|
var icons = ['favicon.ico'];
|
|
var scripts = [
|
|
'js/libs/json2.js',
|
|
'js/libs/jquery.js',
|
|
'js/libs/bootstrap.js',
|
|
'js/libs/jquery.ordered-map.js',
|
|
'js/libs/browser.js',
|
|
'js/dojo/dojo.js',
|
|
'js/libs/qrcode.js'
|
|
];
|
|
ipa_loader.scripts(scripts, function() {
|
|
require(['freeipa/app'], function(app){ app.run(); });
|
|
});
|
|
ipa_loader.styles(styles);
|
|
ipa_loader.icons(icons);
|
|
|
|
})();
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<noscript>This application requires JavaScript enabled.</noscript>
|
|
</body>
|
|
|
|
</html> |