diff options
| author | David Robillard <d@drobilla.net> | 2014-08-05 18:49:42 +0000 | 
|---|---|---|
| committer | David Robillard <d@drobilla.net> | 2014-08-05 18:49:42 +0000 | 
| commit | 6ad8202459017a45e647378b8b8c89838d4661e5 (patch) | |
| tree | 6e3ff6022de8eb8c43abc5cd917460c7c2466f41 | |
| parent | 28e3aa5f942878e2f5bfe9ebdcdd76637354f7bb (diff) | |
| download | lv2-6ad8202459017a45e647378b8b8c89838d4661e5.tar.xz | |
More consistent book table styling.
| -rw-r--r-- | doc/asciidoc.css | 20 | 
1 files changed, 13 insertions, 7 deletions
| diff --git a/doc/asciidoc.css b/doc/asciidoc.css index f99a1d6..59bf677 100644 --- a/doc/asciidoc.css +++ b/doc/asciidoc.css @@ -419,7 +419,7 @@ div.tableblock {    margin-bottom: 1.5em;  }  div.tableblock > table { -  border: 3px solid #527bbd; +  border: 1px dashed #ccc;  }  thead, p.table.header {    font-weight: bold; @@ -428,6 +428,13 @@ thead, p.table.header {  p.table {    margin-top: 0;  } +th.tableblock { +    font-weight: bold; +	border: 1px dashed #ccc; +} +td.tableblock, th.tableblock { +	border: 1px dashed #ccc; +}  /* Because the table frame attribute is overriden by CSS in most browsers. */  div.tableblock > table[frame="void"] {    border-style: none; @@ -453,23 +460,22 @@ table.tableblock {  }  thead, p.tableblock.header {    font-weight: bold; -  color: #527bbd; +  color: black;  }  p.tableblock {    margin-top: 0;  }  table.tableblock { -  border-width: 3px; +  border: 0;    border-spacing: 0px; -  border-style: solid; -  border-color: #527bbd; +  border-style: hidden; +  border-color: #ccc;    border-collapse: collapse;  }  th.tableblock, td.tableblock {    border-width: 1px;    padding: 4px; -  border-style: solid; -  border-color: #527bbd; +  border: 1px dashed #ccc;  }  table.tableblock.frame-topbot { |