Skip to content

Commit

Permalink
Update Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
daizutabi committed Jun 19, 2020
1 parent 24bf1cf commit 96cf5cb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## [Unreleased]

## [1.0.7] - 2020-06-19
### Changed
- Top level object style.
- Hide `function` prefix by `display: none;` in CSS.
Expand Down
2 changes: 1 addition & 1 deletion mkapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0.6"
__version__ = "1.0.7"

from mkapi.core.module import get_module
from mkapi.core.node import get_node
Expand Down
10 changes: 6 additions & 4 deletions mkapi/theme/css/mkapi-common.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,17 +75,19 @@ div.mkapi-object.top.code {
font-style: italic;
}

.mkapi-object-kind.top {
color: #2980B9;
font-size: 90%;
}

.mkapi-object-kind.module, .mkapi-object-kind.package {
font-style: normal;
color: #888;
}

.mkapi-object-kind.function, .mkapi-object-kind.method {
display: none;
}
.mkapi-object-kind.top {
color: #2980B9;
font-size: 90%;
}

.mkapi-object.code .mkapi-object-body {
margin: 0px;
Expand Down

0 comments on commit 96cf5cb

Please sign in to comment.