Skip to content

Commit

Permalink
Fixed #25: Highlight inline fenced blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed May 11, 2016
1 parent 25a102f commit 0f5c43d
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 5 deletions.
1 change: 1 addition & 0 deletions material/assets/stylesheets/application-1a080b68f4.css

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion material/assets/stylesheets/application-54f87043f3.css

This file was deleted.

2 changes: 1 addition & 1 deletion material/assets/stylesheets/application.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion material/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
font-style: normal;
}
</style>
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-54f87043f3.css">
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-1a080b68f4.css">
{% if config.extra.palette %}
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/palettes-05ab2406df.css">
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion material/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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-54f87043f3.css",
"assets/stylesheets/application.css": "assets/stylesheets/application-1a080b68f4.css",
"assets/stylesheets/palettes.css": "assets/stylesheets/palettes-05ab2406df.css"
}
9 changes: 8 additions & 1 deletion src/assets/stylesheets/modules/article/_appearance.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,17 @@
/*
* Headlines, chapters, links and inline code
*/
h1, h2, a, code {
h1, h2, a {
color: $primary;
}

/*
* Inline code
*/
code {
background: #eee;
}

/*
* Lower border for main headline
*/
Expand Down
1 change: 1 addition & 0 deletions src/assets/stylesheets/modules/article/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@
*/
p > code {
white-space: nowrap;
padding: 2px 4px;
}

/*
Expand Down

0 comments on commit 0f5c43d

Please sign in to comment.