chrome.html 1.4 KB
Newer Older
B
bryk 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!--
Copyright 2015 Google Inc. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

17 18
<md-toolbar class="kd-toolbar">
  <div class="md-toolbar-tools kd-toolbar-tools">
19
    <a ui-sref="workload" ui-sref-opts="{ reload: true }" tabindex="-1">
20 21 22 23 24 25 26 27 28
      <md-icon md-svg-icon="assets/images/kubernetes-logo.svg" class="kd-toolbar-logo"></md-icon>
    </a>
    <h2>
      <span>kubernetes</span>
    </h2>
    <div flex="auto" ui-view="toolbar"></div>
  </div>
</md-toolbar>

29
<kd-actionbar ng-if="ctrl.isActionbarVisible()"></kd-actionbar>
30

31
<md-content flex="auto" class="kd-app-content">
32
  <div ng-switch="ctrl.showLoadingSpinner" flex="auto" >
B
bryk 已提交
33
    <div ng-switch-when="true" class="kd-center-fixed">
B
bryk 已提交
34 35 36 37
      <md-progress-circular md-mode="indeterminate" md-diameter="96">
      </md-progress-circular>
    </div>
    <div ng-switch-when="false" ng-transclude class="kd-app-content"></div>
38
  </div>
39
</md-content>