javascript-tutorial / javascript-tutorial/en.javascript.info
Page styling
未关闭
还没有人认领这个 Issue。
- 主要语言
- HTML
- 星标
- 25.5k
- 派生
- 4k
- PR 合并指标
- 30 天内没有已合并 PR
描述
First off: 100 and 1 thanks for the awesome work.
Some thoughts on the page rendering.
- Show visited links in a different color.
a. It helps navigation, memory re-calls etc. - Keep site toolbar visible at all times.
a. One have a quick link to the front-page without having to scroll to top.
b. The search is readily available. - Display list items on front page as
block
a. As it is now items overflowing get a quirked rendering by one list item being "appended" to the next column and partially overlay the next item. I.e. like pt 3.2 here:

(I have custom color on visited links in image)
With custom CSS forcing block view:

I use a custom style-sheet with Stylus to fix this but some of it might be worth a thought for general design / options.
a:visited {
color: #955;
}
.frontpage-content .list-sub__item {
display: block;
}
.sitetoolbar {
position: sticky;
top: 0;
}
贡献指南
这个仓库没有索引到贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先定位 .frontpage-content .list-sub__item、.sitetoolbar 和链接状态的样式。检查首页渲染,以验证所请求的行为:已访问链接具有不同的颜色,工具栏保持可见,并且列表项不再重叠或在列之间错误地流动。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- css
- 领域
- design, frontend
- Issue 类型
- 功能
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100