1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2025-02-17 18:49:21 +01:00

Fixed #35: Add styling for blockquotes

This commit is contained in:
squidfunk 2016-06-26 14:10:13 +02:00
parent 2784a4f781
commit fc6b086db4
8 changed files with 20 additions and 4 deletions

View File

@ -3,6 +3,7 @@ mkdocs-material-0.2.4 (2016-06-xx)
* Fixed improperly set set default favicon
* Fixed #33: Protocol relative URL for webfonts doesn't work with file://
* Fixed #34: IE11 on Windows 7 doesn't honor max-width on main tag
* Fixed #35: Add styling for blockquotes
mkdocs-material-0.2.3 (2016-05-16)

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

View File

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

View File

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

View File

@ -121,6 +121,14 @@
border-top: 1px solid rgba($black, 0.05);
}
}
/*
* Blockquote styles
*/
blockquote {
border-left: 2px solid $black-light;
color: $black-light;
}
}
/*

View File

@ -265,6 +265,13 @@
}
}
/*
* Blockquote styles
*/
blockquote {
padding-left: 16px;
}
/*
* Data table wrapper, in case javascript is available
*/