Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/25/15 18:02:47 (10 years ago)
Author:
dglaser
Message:

#2394:

HeuristicLab.Services.WebApp-3.3:

  • implemented review comments
  • fixed a bug which caused the sidebar menu to collapse on non mobile devices

HeuristicLab.Services.WebApp.Status-3.3:

  • fixed calculation of calculating cores
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  
    33     -moz-border-radius: 0 !important;
    44          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;*/
    95  font-family: "Open Sans", Helvetica, Arial, sans-serif;
    106}
  • trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp/shared/layout/layout.cshtml

    r12435 r12514  
    9696    </section>
    9797</div>
     98<script type="text/javascript">
     99$('.navbar-collapse').on('click', 'li a', function () {
     100    $('.navbar-collapse').collapse('hide');
     101});
     102</script>
    98103</body>
    99104</html>
  • trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp/shared/menu/menu.cshtml

    r12435 r12514  
    11<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">
    43        <span ng-if="section.icon != ''" ng-class="section.icon" style="padding-right: 10px;"></span>
    54        <span>{{section.name}}</span>
Note: See TracChangeset for help on using the changeset viewer.