1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-12-01 02:27:17 +01:00

Added pandoc table styles to specimen

This commit is contained in:
squidfunk 2016-12-18 14:02:20 +01:00
parent 2c8a324324
commit 2ae22c2e3b
5 changed files with 36 additions and 31 deletions

View File

@ -202,6 +202,29 @@ Vestibulum vitae orci quis ante viverra ultricies ut eget turpis. Sed eu
lectus dapibus, eleifend nulla varius, lobortis turpis. In ac hendrerit nisl, lectus dapibus, eleifend nulla varius, lobortis turpis. In ac hendrerit nisl,
sit amet laoreet nibh. sit amet laoreet nibh.
<table>
<colgroup>
<col width="30%">
<col width="70%">
</colgroup>
<thead>
<tr class="header">
<th>Table</th>
<th>with colgroups (Pandoc)</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lorem</td>
<td>ipsum dolor sit amet.</td>
</tr>
<tr>
<td>Sed sagittis</td>
<td>eleifend rutrum. Donec vitae suscipit est.</td>
</tr>
</tbody>
</table>
## Colors ## Colors
### Primary colors ### Primary colors

View File

@ -1224,14 +1224,6 @@ hr {
opacity: 0; opacity: 0;
z-index: -1; } z-index: -1; }
.md-button {
float: right;
margin-top: 9px;
font-size: 13px;
padding-left: 2.6rem;
font-weight: 700;
text-transform: uppercase; }
@media print { @media print {
.md-typeset a::after { .md-typeset a::after {

View File

@ -84,11 +84,6 @@
<div class="md-content"> <div class="md-content">
<article class="md-content__inner md-typeset"> <article class="md-content__inner md-typeset">
{% block content %} {% block content %}
{% if config.edit_uri %}
<a class="md-button md-button--edit" href="{{ page.edit_url }}">
Edit
</a>
{% endif %}
{% if not "\x3ch1 id=" in page.content %} {% if not "\x3ch1 id=" in page.content %}
<h1>{{ page.title | default(config.site_name, true)}}</h1> <h1>{{ page.title | default(config.site_name, true)}}</h1>
{% endif %} {% endif %}
@ -106,6 +101,11 @@
Material Material
</a> </a>
theme. theme.
{% if config.edit_uri %}
<a href="{{ page.edit_url }}">
Edit this page
</a>
{% endif %}
</small> </small>
</article> </article>
</div> </div>

View File

@ -21,14 +21,5 @@
//// ////
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Rules // Nothing to see here, move along
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
.md-button {
float: right;
margin-top: 9px;
font-size: 13px;
padding-left: 2.6rem;
font-weight: 700;
text-transform: uppercase;
}

View File

@ -168,14 +168,6 @@
<!-- Block: content --> <!-- Block: content -->
{% block content %} {% block content %}
<!-- Edit button, if URL was defined -->
{% if config.edit_uri %}
<a class="md-button md-button--edit"
href="{{ page.edit_url }}">
Edit
</a>
{% endif %}
<!-- <!--
This is a nasty hack that checks whether the content contains This is a nasty hack that checks whether the content contains
a h1 headline. If it doesn't, the page title (or respectively a h1 headline. If it doesn't, the page title (or respectively
@ -202,6 +194,13 @@
Material Material
</a> </a>
theme. theme.
<!-- Edit button, if URL was defined -->
{% if config.edit_uri %}
<a href="{{ page.edit_url }}">
Edit this page
</a>
{% endif %}
</small> </small>
</article> </article>
</div> </div>