summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorJuliane Clausen <git@juliane-clausen.de>2014-08-07 15:02:16 +0200
committerJuliane Clausen <git@juliane-clausen.de>2014-08-07 15:02:16 +0200
commit4675eb6ff63edf0cecc2e9ec39f18bc62e32c006 (patch)
tree9d99713b6a4bbbb18704a5f3cdfaa13447f08087 /css
parentbd2e122b3abe76fb2375e0e1aa1b1b287edc4509 (diff)
Created a non-fluid table class to fix the 100% width tables
Diffstat (limited to 'css')
-rwxr-xr-xcss/local.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/css/local.css b/css/local.css
index db6e57e6..746e35c4 100755
--- a/css/local.css
+++ b/css/local.css
@@ -1,3 +1,8 @@
/* ikiwiki local style sheet */
/* Add local styling here, instead of modifying bootstrap.min.css. */
+
+/* Add this class to a bootstrap table to not make it take 100% of the width */
+.table-nonfluid {
+ width: auto;
+}