diff options
author | Juliane Clausen <git@juliane-clausen.de> | 2014-08-07 15:02:16 +0200 |
---|---|---|
committer | Juliane Clausen <git@juliane-clausen.de> | 2014-08-07 15:02:16 +0200 |
commit | 4675eb6ff63edf0cecc2e9ec39f18bc62e32c006 (patch) | |
tree | 9d99713b6a4bbbb18704a5f3cdfaa13447f08087 /css | |
parent | bd2e122b3abe76fb2375e0e1aa1b1b287edc4509 (diff) |
Created a non-fluid table class to fix the 100% width tables
Diffstat (limited to 'css')
-rwxr-xr-x | css/local.css | 5 |
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; +} |