mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed #34: IE11 on Windows 7 doesn't honor max-width on main tag
This commit is contained in:
parent
1a4490a39c
commit
62dc4c111e
@ -1,3 +1,8 @@
|
|||||||
|
mkdocs-material-0.2.4 (2016-06-xx)
|
||||||
|
|
||||||
|
* Fixed improperly set set default favicon
|
||||||
|
* Fixed #34: IE11 on Windows 7 doesn't honor max-width on main tag
|
||||||
|
|
||||||
mkdocs-material-0.2.3 (2016-05-16)
|
mkdocs-material-0.2.3 (2016-05-16)
|
||||||
|
|
||||||
* Fixed #25: Highlight inline fenced blocks
|
* Fixed #25: Highlight inline fenced blocks
|
||||||
|
File diff suppressed because one or more lines are too long
0
material/assets/javascripts/modernizr-d41d8cd98f.js
Normal file
0
material/assets/javascripts/modernizr-d41d8cd98f.js
Normal file
File diff suppressed because one or more lines are too long
1
material/assets/stylesheets/application-f851d964d4.css
Normal file
1
material/assets/stylesheets/application-f851d964d4.css
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -53,7 +53,7 @@
|
|||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-0dac3e5884.css">
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-f851d964d4.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 %}
|
||||||
@ -74,7 +74,7 @@
|
|||||||
{% for path in extra_css %}
|
{% for path in extra_css %}
|
||||||
<link rel="stylesheet" href="{{ path }}">
|
<link rel="stylesheet" href="{{ path }}">
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<script src="{{ base_url }}/assets/javascripts/modernizr-4ab42b99fd.js"></script>
|
<script src="{{ base_url }}/assets/javascripts/modernizr-d41d8cd98f.js"></script>
|
||||||
{% block extrahead %}{% endblock %}
|
{% block extrahead %}{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
{% set palette = config.extra.get("palette", {}) %}
|
{% set palette = config.extra.get("palette", {}) %}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"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-d41d8cd98f.js",
|
||||||
"assets/stylesheets/application.css": "assets/stylesheets/application-0dac3e5884.css",
|
"assets/stylesheets/application.css": "assets/stylesheets/application-f851d964d4.css",
|
||||||
"assets/stylesheets/palettes.css": "assets/stylesheets/palettes-05ab2406df.css"
|
"assets/stylesheets/palettes.css": "assets/stylesheets/palettes-05ab2406df.css"
|
||||||
}
|
}
|
@ -72,6 +72,14 @@ time, mark, audio, video {
|
|||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Enforce correct rendering of main element - missing in user agent stylesheet
|
||||||
|
* of IE11 on Windows 7.
|
||||||
|
*/
|
||||||
|
main {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Reset list styles
|
* Reset list styles
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user