Fixed #13: Table cells don't wrap

This commit is contained in:
squidfunk 2016-03-12 13:15:15 +01:00
parent c829555313
commit bf227de93e
6 changed files with 8 additions and 9 deletions

View File

@ -1,8 +1,7 @@
mkdocs-material-0.x.x (2016-xx-xx) mkdocs-material-0.2.1 (2016-03-12)
In progress
* Fixed #10: Invisible header after closing search bar with ESC key * Fixed #10: Invisible header after closing search bar with ESC key
* Fixed #13: Table cells don't wrap
* Corrected wrong path for static asset monitoring in Gulpfile.js * Corrected wrong path for static asset monitoring in Gulpfile.js
* Set up tracking of site search for Google Analytics * Set up tracking of site search for Google Analytics

File diff suppressed because one or more lines are too long

View File

@ -53,7 +53,7 @@
font-style: normal; font-style: normal;
} }
</style> </style>
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-b64b728552.css"> <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-20d5debb47.css">
{% if config.extra.palette %} {% if config.extra.palette %}
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/palettes-05ab2406df.css"> <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/palettes-05ab2406df.css">
{% endif %} {% endif %}

View File

@ -2,6 +2,6 @@
"assets/images/favicon.ico": "assets/images/favicon-e565ddfa3b.ico", "assets/images/favicon.ico": "assets/images/favicon-e565ddfa3b.ico",
"assets/javascripts/application.js": "assets/javascripts/application-997097ee0c.js", "assets/javascripts/application.js": "assets/javascripts/application-997097ee0c.js",
"assets/javascripts/modernizr.js": "assets/javascripts/modernizr-4ab42b99fd.js", "assets/javascripts/modernizr.js": "assets/javascripts/modernizr-4ab42b99fd.js",
"assets/stylesheets/application.css": "assets/stylesheets/application-b64b728552.css", "assets/stylesheets/application.css": "assets/stylesheets/application-20d5debb47.css",
"assets/stylesheets/palettes.css": "assets/stylesheets/palettes-05ab2406df.css" "assets/stylesheets/palettes.css": "assets/stylesheets/palettes-05ab2406df.css"
} }

View File

@ -242,7 +242,7 @@
padding: 12px 16px; padding: 12px 16px;
font-size: 12px; font-size: 12px;
text-align: left; text-align: left;
white-space: nowrap; vertical-align: top;
} }
/* /*
@ -250,7 +250,7 @@
*/ */
td { td {
padding: 12px 16px; padding: 12px 16px;
white-space: nowrap; vertical-align: top;
} }
} }