You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2014/10/21 22:10:16 UTC

git commit: ISIS-537: removed border from either end of table; added table-hover style;

Repository: isis
Updated Branches:
  refs/heads/master 133547e33 -> b49759b31


ISIS-537: removed border from either end of table; added table-hover style;


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

Branch: refs/heads/master
Commit: b49759b315ac48843ec686c4770c1c6886d1bbc8
Parents: 133547e
Author: Dan Haywood <da...@haywood-associates.co.uk>
Authored: Tue Oct 21 21:10:10 2014 +0100
Committer: Dan Haywood <da...@haywood-associates.co.uk>
Committed: Tue Oct 21 21:10:10 2014 +0100

----------------------------------------------------------------------
 .../CollectionContentsAsAjaxTablePanel.css         | 17 +++++++++++++++++
 .../CollectionContentsAsAjaxTablePanel.html        |  2 +-
 2 files changed, 18 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/b49759b3/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/CollectionContentsAsAjaxTablePanel.css
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/CollectionContentsAsAjaxTablePanel.css b/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/CollectionContentsAsAjaxTablePanel.css
index 3588e8c..33d63c2 100644
--- a/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/CollectionContentsAsAjaxTablePanel.css
+++ b/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/CollectionContentsAsAjaxTablePanel.css
@@ -116,3 +116,20 @@
 .collectionContentsAsAjaxTablePanel div input[type=text][disabled] {
     padding: 0;
 }
+
+
+
+
+.collectionContentsAsAjaxTablePanel table {
+    border: none;
+}
+
+.collectionContentsAsAjaxTablePanel table tr td:first-child,
+.collectionContentsAsAjaxTablePanel table tr th:first-child {
+    border-left: none;
+}
+
+.collectionContentsAsAjaxTablePanel table tr th:last-child,
+.collectionContentsAsAjaxTablePanel table tr td:last-child {
+    border-right: none;
+}

http://git-wip-us.apache.org/repos/asf/isis/blob/b49759b3/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/CollectionContentsAsAjaxTablePanel.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/CollectionContentsAsAjaxTablePanel.html b/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/CollectionContentsAsAjaxTablePanel.html
index 162a0a8..31c0121 100644
--- a/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/CollectionContentsAsAjaxTablePanel.html
+++ b/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/CollectionContentsAsAjaxTablePanel.html
@@ -24,7 +24,7 @@
                 <div class="entityActions" wicket:id="entityActions"></div>
                 <div class="clearfix"></div>
                 <div class="table-responsive">
-                    <table class="contents table table-striped table-condensed table-bordered" cellspacing="0" wicket:id="table">[table]</table>
+                    <table class="contents table table-striped table-condensed table-hover table-bordered" cellspacing="0" wicket:id="table">[table]</table>
                 </div>
                 <div wicket:id="actionPromptModalWindow"></div>
             </div>