aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/components/tf-dashboard-common/tf-dashboard-layout.html
diff options
context:
space:
mode:
authorGravatar Justine Tunney <jart@google.com>2016-10-18 23:15:04 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-10-19 00:20:24 -0700
commit5e0cf51f2e68553c195e8e72734781c58ccb19cb (patch)
tree4237c87f7a602413a2cc1adae56c07aec748dfb7 /tensorflow/tensorboard/components/tf-dashboard-common/tf-dashboard-layout.html
parent05a66c889d3a4b42187d65feb3d8d446b2a7814c (diff)
TensorBoard: Rename components to have underscores
Many languages, e.g. JS, proto, etc. don't support having hyphens in package names. Change: 136565198
Diffstat (limited to 'tensorflow/tensorboard/components/tf-dashboard-common/tf-dashboard-layout.html')
-rw-r--r--tensorflow/tensorboard/components/tf-dashboard-common/tf-dashboard-layout.html67
1 files changed, 0 insertions, 67 deletions
diff --git a/tensorflow/tensorboard/components/tf-dashboard-common/tf-dashboard-layout.html b/tensorflow/tensorboard/components/tf-dashboard-common/tf-dashboard-layout.html
deleted file mode 100644
index e0e8a2b52c..0000000000
--- a/tensorflow/tensorboard/components/tf-dashboard-common/tf-dashboard-layout.html
+++ /dev/null
@@ -1,67 +0,0 @@
-<!--
-@license
-Copyright 2016 The TensorFlow Authors. 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.
--->
-
-<link rel="import" href="../polymer/polymer.html">
-<link rel="import" href="scrollbar-style.html">
-<link rel="import" href="tensorboard-color.html">
-
-<!--
-Generic layout for a dashboard.
--->
-<dom-module id="tf-dashboard-layout">
- <template>
- <div id="sidebar">
- <content select=".sidebar"></content>
- </div>
-
- <div id="center" class="scrollbar">
- <content select=".center"></content>
- </div>
- <style include="scrollbar-style"></style>
- <style>
- #sidebar {
- width: inherit;
- height: 100%;
- overflow: ellipsis;
- flex-grow: 0;
- flex-shrink: 0;
- }
-
- #center {
- height: 100%;
- overflow-y: auto;
- flex-grow: 1;
- flex-shrink: 1;
- }
-
- .tf-graph-dashboard #center {
- background: white;
- }
-
- :host {
- display: flex;
- flex-direction: row;
- height: 100%;
- }
- </style>
- </template>
- <script>
- Polymer({
- is: "tf-dashboard-layout",
- });
- </script>
-</dom-module>