mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed sizing of icons after dependency update
This commit is contained in:
parent
0afab33187
commit
0aff83ecb3
@ -5,8 +5,8 @@
|
||||
"assets/javascripts/vendor.js.map": "assets/javascripts/vendor.fd16492e.min.js.map",
|
||||
"assets/javascripts/worker/search.js": "assets/javascripts/worker/search.4ac00218.min.js",
|
||||
"assets/javascripts/worker/search.js.map": "assets/javascripts/worker/search.4ac00218.min.js.map",
|
||||
"assets/stylesheets/main.css": "assets/stylesheets/main.1d1f224e.min.css",
|
||||
"assets/stylesheets/main.css.map": "assets/stylesheets/main.1d1f224e.min.css.map",
|
||||
"assets/stylesheets/main.css": "assets/stylesheets/main.19190aaf.min.css",
|
||||
"assets/stylesheets/main.css.map": "assets/stylesheets/main.19190aaf.min.css.map",
|
||||
"assets/stylesheets/overrides.css": "assets/stylesheets/overrides.88a3f51b.min.css",
|
||||
"assets/stylesheets/overrides.css.map": "assets/stylesheets/overrides.88a3f51b.min.css.map",
|
||||
"assets/stylesheets/palette.css": "assets/stylesheets/palette.24b84193.min.css",
|
||||
|
3
material/assets/stylesheets/main.19190aaf.min.css
vendored
Normal file
3
material/assets/stylesheets/main.19190aaf.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
material/assets/stylesheets/main.19190aaf.min.css.map
Normal file
1
material/assets/stylesheets/main.19190aaf.min.css.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -34,7 +34,7 @@
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
{% block styles %}
|
||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.1d1f224e.min.css' | url }}">
|
||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.19190aaf.min.css' | url }}">
|
||||
{% if config.theme.palette %}
|
||||
{% set palette = config.theme.palette %}
|
||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.24b84193.min.css' | url }}">
|
||||
|
@ -572,6 +572,7 @@ kbd {
|
||||
margin-left: 0.5em;
|
||||
vertical-align: sub;
|
||||
mask-repeat: no-repeat;
|
||||
mask-size: contain;
|
||||
content: " ";
|
||||
}
|
||||
|
||||
|
@ -143,6 +143,7 @@ $admonitions: (
|
||||
background-color: $clr-blue-a200;
|
||||
mask-image: var(--md-admonition-icon--note);
|
||||
mask-repeat: no-repeat;
|
||||
mask-size: contain;
|
||||
content: "";
|
||||
|
||||
// Adjust for right-to-left languages
|
||||
@ -192,6 +193,7 @@ $admonitions: (
|
||||
background-color: $tint;
|
||||
mask-image: var(--md-admonition-icon--#{$name});
|
||||
mask-repeat: no-repeat;
|
||||
mask-size: contain;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -142,6 +142,7 @@
|
||||
background-color: currentColor;
|
||||
mask-image: var(--md-footnotes-icon);
|
||||
mask-repeat: no-repeat;
|
||||
mask-size: contain;
|
||||
content: "";
|
||||
|
||||
// Adjust for right-to-left languages
|
||||
|
@ -102,6 +102,7 @@
|
||||
background-color: currentColor;
|
||||
mask-image: var(--md-details-icon);
|
||||
mask-repeat: no-repeat;
|
||||
mask-size: contain;
|
||||
transform: rotate(0deg);
|
||||
transition: transform 250ms;
|
||||
content: "";
|
||||
|
@ -72,6 +72,7 @@
|
||||
background-color: var(--md-default-fg-color--lightest);
|
||||
mask-image: var(--md-tasklist-icon);
|
||||
mask-repeat: no-repeat;
|
||||
mask-size: contain;
|
||||
content: "";
|
||||
|
||||
// Adjust for right-to-left languages
|
||||
|
@ -64,6 +64,7 @@
|
||||
background-color: currentColor;
|
||||
mask-image: var(--md-clipboard-icon);
|
||||
mask-repeat: no-repeat;
|
||||
mask-size: contain;
|
||||
content: "";
|
||||
}
|
||||
|
||||
|
@ -213,6 +213,7 @@
|
||||
background-color: currentColor;
|
||||
mask-image: var(--md-nav-icon--prev);
|
||||
mask-repeat: no-repeat;
|
||||
mask-size: contain;
|
||||
content: "";
|
||||
}
|
||||
|
||||
@ -330,6 +331,7 @@
|
||||
background-color: currentColor;
|
||||
mask-image: var(--md-nav-icon--next);
|
||||
mask-repeat: no-repeat;
|
||||
mask-size: contain;
|
||||
content: "";
|
||||
}
|
||||
|
||||
@ -558,6 +560,7 @@
|
||||
background-color: currentColor;
|
||||
mask-image: var(--md-nav-icon--next);
|
||||
mask-repeat: no-repeat;
|
||||
mask-size: contain;
|
||||
content: "";
|
||||
}
|
||||
|
||||
|
@ -666,6 +666,7 @@ $md-toggle__search--checked:
|
||||
background-color: currentColor;
|
||||
mask-image: var(--md-search-result-icon);
|
||||
mask-repeat: no-repeat;
|
||||
mask-size: contain;
|
||||
content: "";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user