Browse Source

Paket-Verwaltung; Alert-Z-Index behoben

master
anxietypb 7 years ago
parent
commit
a88c640b9a
  1. 8
      .gitignore
  2. BIN
      api/db.sqlite3
  3. 26
      bower.json
  4. 6
      css/bootstrap.min.css
  5. 21
      index.html
  6. 21
      package.json

8
.gitignore

@ -0,0 +1,8 @@
logs/*
!.gitkeep
node_modules/
bower_components/
tmp
.DS_Store
.idea
.sass-cache

BIN
api/db.sqlite3

26
bower.json

@ -0,0 +1,26 @@
{
"name": "virl-scheduler",
"description": "",
"main": "index.js",
"authors": [
"patrick.bug@informatik.hs-fulda.de"
],
"license": "GNU",
"homepage": "",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"angular-route": "^1.6.1",
"restangular": "^1.6.0",
"angular-bootstrap": "^2.4.0",
"moment": "^2.17.1",
"bootstrap": "^3.3.7",
"angular": "^1.6.1"
}
}

6
css/bootstrap.min.css
File diff suppressed because it is too large
View File

21
index.html

@ -1,9 +1,9 @@
<html lang="en" ng-app="topologyManager" >
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Angular Material style sheet -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-material-design.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Angular Material style sheet -->
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-material-design.min.css">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Roboto:300,400,500,700">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<base href="/virl-scheduler/">
@ -18,6 +18,7 @@
right:0px;
top:50px;
max-width:500px;
z-index:99999;
}
</style>
@ -41,15 +42,15 @@
<!-- Angular Material requires Angular.js Libraries -->
<script src="js/angular.min.js"></script>
<script src="bower_components/angular/angular.min.js"></script>
<script src="js/angular-route.js"></script>
<script src="js/lodash.js"></script>
<script src="bower_components/angular-route/angular-route.min.js"></script>
<script src="bower_components/lodash/dist/lodash.min.js"></script>
<script src="js/restangular.min.js"></script>
<script src="js/moment.js"></script>
<script src="bower_components/restangular/dist/restangular.min.js"></script>
<script src="bower_components/moment/min/moment.min.js"></script>
<script src="js/ui-bootstrap-tpls-2.2.0.min.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js"></script>
<!-- Angular Material Library -->

21
package.json

@ -0,0 +1,21 @@
{
"name": "virl-scheduler",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"bower": "^1.8.0"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "php -S localhost:8888 -t ../"
},
"repository": {
"type": "git",
"url": "https://gogs.informatik.hs-fulda.de/pbug/virl-scheduler.git"
},
"keywords": [],
"author": "",
"license": "ISC"
}
Loading…
Cancel
Save