1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-24 07:30:12 +01:00

Fixed border radius for details

This commit is contained in:
squidfunk 2020-08-17 10:04:43 +02:00
parent 6a69b3c7da
commit b54c46da1b
6 changed files with 8 additions and 7 deletions

View File

@ -5,8 +5,8 @@
"assets/javascripts/vendor.js.map": "assets/javascripts/vendor.d1f5a259.min.js.map",
"assets/javascripts/worker/search.js": "assets/javascripts/worker/search.fae956e7.min.js",
"assets/javascripts/worker/search.js.map": "assets/javascripts/worker/search.fae956e7.min.js.map",
"assets/stylesheets/main.css": "assets/stylesheets/main.42d6186f.min.css",
"assets/stylesheets/main.css.map": "assets/stylesheets/main.42d6186f.min.css.map",
"assets/stylesheets/main.css": "assets/stylesheets/main.2c939256.min.css",
"assets/stylesheets/main.css.map": "assets/stylesheets/main.2c939256.min.css.map",
"assets/stylesheets/overrides.css": "assets/stylesheets/overrides.011ebae6.min.css",
"assets/stylesheets/overrides.css.map": "assets/stylesheets/overrides.011ebae6.min.css.map",
"assets/stylesheets/palette.css": "assets/stylesheets/palette.2c2767bb.min.css",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -41,7 +41,7 @@
{% endif %}
{% endblock %}
{% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.42d6186f.min.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.2c939256.min.css' | url }}">
{% if palette.scheme or palette.primary or palette.accent %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.2c2767bb.min.css' | url }}">
{% endif %}

View File

@ -54,7 +54,7 @@
// We cannot set overflow: hidden, as the outline would not be visible,
// so we need to correct the border radius
> summary {
border-bottom-right-radius: px2rem(2px);
border-radius: px2rem(2px);
}
}
@ -72,6 +72,7 @@
display: block;
min-height: px2rem(20px);
padding: px2rem(8px) px2rem(36px) px2rem(8px) px2rem(44px);
border-top-left-radius: px2rem(2px);
border-top-right-radius: px2rem(2px);
cursor: pointer;