Changeset 12514 for trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp
- Timestamp:
- 06/25/15 18:02:47 (10 years ago)
- Location:
- trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp/app.css
r12435 r12514 3 3 -moz-border-radius: 0 !important; 4 4 border-radius: 0 !important; 5 /* -webkit-box-shadow: none !important;6 -moz-box-shadow: none !important;7 -o-box-shadow: none !important;8 box-shadow: none !important;*/9 5 font-family: "Open Sans", Helvetica, Arial, sans-serif; 10 6 } -
trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp/shared/layout/layout.cshtml
r12435 r12514 96 96 </section> 97 97 </div> 98 <script type="text/javascript"> 99 $('.navbar-collapse').on('click', 'li a', function () { 100 $('.navbar-collapse').collapse('hide'); 101 }); 102 </script> 98 103 </body> 99 104 </html> -
trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp/shared/menu/menu.cshtml
r12435 r12514 1 1 <li ng-repeat="section in entries" ng-class="{'category':section.isCategory === true, 'active': isActive(section.route)}"> 2 <a ng-href="{{section.route}}" ng-if="!section.isCategory" 3 data-toggle="collapse" data-target="#menu .navbar-collapse"> 2 <a ng-href="{{section.route}}" ng-if="!section.isCategory"> 4 3 <span ng-if="section.icon != ''" ng-class="section.icon" style="padding-right: 10px;"></span> 5 4 <span>{{section.name}}</span>
Note: See TracChangeset
for help on using the changeset viewer.