blinkfox / hexo-theme-matery

A beautiful hexo blog theme with material design and responsive design.一个基于材料设计和响应式设计而成的全面、美观的Hexo主题。国内访问:http://blinkfox.com
https://blinkfox.github.io/
Apache License 2.0
5.24k stars 1.25k forks source link

Tag page : auto scroll to top when tag clicked #91

Closed Tilix4 closed 5 years ago

Tilix4 commented 5 years ago

In the tag page, when you click on a tag, the page scrolls back to top automatically which is not very handy to have a quick overview of them.

HarborZeng commented 5 years ago

Hhhhhh, can't argee more. This will happen especially when you have tremendous amount of tags.

My solution is to have the tag area scrollable: image

In which case, just add this css in the matery.css for your concern:

.tags-container {
    max-height: 300px;
    overflow-y: scroll;
}

and enbale it by attach this css name to this line https://github.com/blinkfox/hexo-theme-matery/blob/develop/layout/_widget/tag-cloud.ejs#L27

HarborZeng commented 5 years ago

this can also work for category problem

blinkfox commented 5 years ago

@Tilix4 I should not make any changes to these two pages for the time being. You can customize them yourself.

blinkfox commented 5 years ago

I will close the issue.