Skip to content

Commit

Permalink
WEB-28
Browse files Browse the repository at this point in the history
    indented lab stages
  • Loading branch information
act-ive committed Aug 24, 2014
1 parent 064c0e8 commit 649e694
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/main/webapp/WEB-INF/pages/main_new.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
<link rel="stylesheet" href="css/animate.css">
<!-- Custom styles for this theme -->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"/>
<!-- end of CSS -->

<!-- JS -->
<script src="js/angular/angular.min.js"></script>
Expand All @@ -34,17 +36,16 @@
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<script src="js/application.js"></script>
<script type="text/javascript">
<script src="js/application.js"></script>
<script type="text/javascript">
var goat=angular.module("goatApp", ['ngAnimate']);
</script>
<script type="text/javascript" src="js/goat.js"></script>
<script type="text/javascript" src="js/goatConstants.js"></script>
<!-- end of JS -->

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>WebGoat V6.0</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"/>

</head>

<body class="animated fadeIn" ng-app="goatApp">
Expand Down Expand Up @@ -72,8 +73,8 @@
<ul class="slideDown" ng-show="expanded">
<li ng-repeat="lesson in item.children">
<a ng-click="renderLesson(lesson.link)" title="link to {{lesson.name}}" href="">{{lesson.name}}</a>
<span ng-repeat="stage in lesson.children">
<a ng-click="renderLesson(stage.link)" title="link to {{stage.name}}" href="">&nbsp;&nbsp;{{stage.name}}</a>
<span ng-repeat="stage in lesson.children" >
<a ng-click="renderLesson(stage.link)" title="link to {{stage.name}}" href="">{{stage.name}}</a>
</span>
</li>
</ul>
Expand Down
4 changes: 4 additions & 0 deletions src/main/webapp/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,10 @@ img {
background-color: #16a086;
}

.sidebar > div > ul > li > ul > li > span {
float:left; margin-left:1.5em;
}

/* ==========================================================================
Main Content
========================================================================== */
Expand Down

0 comments on commit 649e694

Please sign in to comment.