mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed admonition borders for right-to-left languages (8.0.0 regression)
This commit is contained in:
parent
1f6a784730
commit
575dcd738a
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
material/assets/stylesheets/main.8cb67d2f.min.css.map
Normal file
1
material/assets/stylesheets/main.8cb67d2f.min.css.map
Normal file
File diff suppressed because one or more lines are too long
@ -34,7 +34,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block styles %}
|
{% block styles %}
|
||||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.0b4227ca.min.css' | url }}">
|
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.8cb67d2f.min.css' | url }}">
|
||||||
{% if config.theme.palette %}
|
{% if config.theme.palette %}
|
||||||
{% set palette = config.theme.palette %}
|
{% set palette = config.theme.palette %}
|
||||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.dc90facb.min.css' | url }}">
|
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.dc90facb.min.css' | url }}">
|
||||||
|
@ -70,7 +70,8 @@ $admonitions: (
|
|||||||
font-size: px2rem(12.8px);
|
font-size: px2rem(12.8px);
|
||||||
page-break-inside: avoid;
|
page-break-inside: avoid;
|
||||||
background-color: var(--md-admonition-bg-color);
|
background-color: var(--md-admonition-bg-color);
|
||||||
border-left: px2rem(4px) solid $clr-blue-a200;
|
border: 0 solid $clr-blue-a200;
|
||||||
|
border-left-width: px2rem(4px);
|
||||||
border-radius: px2rem(2px);
|
border-radius: px2rem(2px);
|
||||||
box-shadow: var(--md-shadow-z1);
|
box-shadow: var(--md-shadow-z1);
|
||||||
|
|
||||||
@ -87,8 +88,8 @@ $admonitions: (
|
|||||||
|
|
||||||
// Adjust for right-to-left languages
|
// Adjust for right-to-left languages
|
||||||
[dir="rtl"] & {
|
[dir="rtl"] & {
|
||||||
border-right: px2rem(4px) solid $clr-blue-a200;
|
border-right-width: px2rem(4px);
|
||||||
border-left: none;
|
border-left-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Adjust vertical spacing for nested admonitions
|
// Adjust vertical spacing for nested admonitions
|
||||||
@ -125,15 +126,16 @@ $admonitions: (
|
|||||||
padding: px2rem(8px) px2rem(12px) px2rem(8px) px2rem(40px);
|
padding: px2rem(8px) px2rem(12px) px2rem(8px) px2rem(40px);
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
background-color: color.adjust($clr-blue-a200, $alpha: -0.9);
|
background-color: color.adjust($clr-blue-a200, $alpha: -0.9);
|
||||||
border-left: px2rem(4px) solid $clr-blue-a200;
|
border: 0 solid $clr-blue-a200;
|
||||||
|
border-left-width: px2rem(4px);
|
||||||
border-top-left-radius: px2rem(2px);
|
border-top-left-radius: px2rem(2px);
|
||||||
|
|
||||||
// Adjust for right-to-left languages
|
// Adjust for right-to-left languages
|
||||||
[dir="rtl"] & {
|
[dir="rtl"] & {
|
||||||
margin: 0 px2rem(-16px) 0 px2rem(-12px);
|
margin: 0 px2rem(-16px) 0 px2rem(-12px);
|
||||||
padding: px2rem(8px) px2rem(40px) px2rem(8px) px2rem(12px);
|
padding: px2rem(8px) px2rem(40px) px2rem(8px) px2rem(12px);
|
||||||
border-right: px2rem(4px) solid $clr-blue-a200;
|
border-right-width: px2rem(4px);
|
||||||
border-left: none;
|
border-left-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Adjust spacing for title-only admonitions
|
// Adjust spacing for title-only admonitions
|
||||||
|
Loading…
Reference in New Issue
Block a user