You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2013/09/09 11:54:04 UTC

[44/50] [abbrv] git commit: updated refs/heads/1867-feature-plugins to 8aad450

Fixing table to wrap long words.


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

Branch: refs/heads/1867-feature-plugins
Commit: ceab856d1678523073fb185fb73a2b8a0c37e850
Parents: d1e0c8d
Author: suelockwood <de...@gmail.com>
Authored: Thu Sep 5 12:30:06 2013 -0400
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Mon Sep 9 11:16:45 2013 +0200

----------------------------------------------------------------------
 src/fauxton/assets/less/fauxton.less | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/ceab856d/src/fauxton/assets/less/fauxton.less
----------------------------------------------------------------------
diff --git a/src/fauxton/assets/less/fauxton.less b/src/fauxton/assets/less/fauxton.less
index 8111f0f..02fcef6 100644
--- a/src/fauxton/assets/less/fauxton.less
+++ b/src/fauxton/assets/less/fauxton.less
@@ -371,6 +371,10 @@ a:hover{
 /*dashboard content can be in multiple templates*/
 
 #dashboard-content{
+  &.row-fluid{
+    /*remove gutter without rewriting variable*/
+    margin-left: 0px;
+  }
   padding: 20px;
   .with-sidebar &{
     border-left: 1px solid #999;
@@ -619,6 +623,19 @@ footer#mainFooter{
 }
 
 /*TABLE STYLES*/
+table.table {
+  table-layout: fixed;
+}
+table {
+  tr{
+    td{
+      word-wrap: break-word;
+      &.select {
+        width: 20px;
+      }
+    }
+  }
+}
 table.databases {clear: both;}
 thead {border-bottom: 2px solid @redButton;}
 tbody {padding-top: 10px;}