mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed #35: Add styling for blockquotes
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
1
material/assets/stylesheets/application-a422ff04cc.css
Normal file
1
material/assets/stylesheets/application-a422ff04cc.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
File diff suppressed because one or more lines are too long
@@ -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 %}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
@@ -121,6 +121,14 @@
|
||||
border-top: 1px solid rgba($black, 0.05);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Blockquote styles
|
||||
*/
|
||||
blockquote {
|
||||
border-left: 2px solid $black-light;
|
||||
color: $black-light;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@@ -265,6 +265,13 @@
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Blockquote styles
|
||||
*/
|
||||
blockquote {
|
||||
padding-left: 16px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Data table wrapper, in case javascript is available
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user