You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by zh...@apache.org on 2015/06/10 04:52:54 UTC

incubator-kylin git commit: add world-break for tbody

Repository: incubator-kylin
Updated Branches:
  refs/heads/0.8.0 cf4277891 -> a52dfb67a


add world-break for tbody


Project: http://git-wip-us.apache.org/repos/asf/incubator-kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-kylin/commit/a52dfb67
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kylin/tree/a52dfb67
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kylin/diff/a52dfb67

Branch: refs/heads/0.8.0
Commit: a52dfb67a0b5dd21b41cc2cefb09c4d0a6f387a9
Parents: cf42778
Author: jiazhong <ji...@ebay.com>
Authored: Wed Jun 10 10:51:41 2015 +0800
Committer: jiazhong <ji...@ebay.com>
Committed: Wed Jun 10 10:52:26 2015 +0800

----------------------------------------------------------------------
 webapp/app/less/app.less                                | 2 +-
 webapp/app/partials/cubeDesigner/overview.html          | 6 +++---
 webapp/app/partials/modelDesigner/model_dimensions.html | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/a52dfb67/webapp/app/less/app.less
----------------------------------------------------------------------
diff --git a/webapp/app/less/app.less b/webapp/app/less/app.less
index f53a3ed..78ed7f2 100644
--- a/webapp/app/less/app.less
+++ b/webapp/app/less/app.less
@@ -512,7 +512,7 @@ background-color:#ffffff;
   vertical-align: top;
   border-top: 1px solid #ddd;
 }
-.tb-breakword{
+.table>tbody{
     word-break:break-all;
     word-wrap:break-word;
 }

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/a52dfb67/webapp/app/partials/cubeDesigner/overview.html
----------------------------------------------------------------------
diff --git a/webapp/app/partials/cubeDesigner/overview.html b/webapp/app/partials/cubeDesigner/overview.html
index 28f02c3..532c594 100644
--- a/webapp/app/partials/cubeDesigner/overview.html
+++ b/webapp/app/partials/cubeDesigner/overview.html
@@ -29,17 +29,17 @@
                     <!--Cube Name-->
                     <tr>
                         <th>Cube Name</th>
-                        <td class="tb-breakword">{{cubesManager.cubeMetaFrame.name}}</td>
+                        <td>{{cubesManager.cubeMetaFrame.name}}</td>
                     </tr>
                     <!--Fact Table-->
                     <tr>
                         <th>Fact Table</th>
-                        <td class="tb-breakword">{{metaModel.model.fact_table}}</td>
+                        <td>{{metaModel.model.fact_table}}</td>
                     </tr>
                     <!--Lookup Table-->
                     <tr>
                         <th>Lookup Table</th>
-                        <td class="tb-breakword">
+                        <td>
                             {{metaModel.model.lookups.length}}
                         </td>
                     </tr>

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/a52dfb67/webapp/app/partials/modelDesigner/model_dimensions.html
----------------------------------------------------------------------
diff --git a/webapp/app/partials/modelDesigner/model_dimensions.html b/webapp/app/partials/modelDesigner/model_dimensions.html
index 46dd238..c9aa04a 100644
--- a/webapp/app/partials/modelDesigner/model_dimensions.html
+++ b/webapp/app/partials/modelDesigner/model_dimensions.html
@@ -42,7 +42,7 @@
                             <span>{{dimension.table}}</span>
                         </td>
                         <!--Table Name -->
-                        <td class="tb-breakword">
+                        <td>
                             <span>{{dimension.columns}}</span>
                         </td>
                     </tr>