javascript-tutorial / javascript-tutorial/en.javascript.info
Page styling
オープン
まだ誰も着手していません。
- 主要言語
- 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 にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
.frontpage-content .list-sub__item、.sitetoolbar、リンクの状態に対するスタイルをまず探します。フロントページのレンダリングを確認して、要求された動作を検証します。訪問済みリンクには識別可能な色があり、ツールバーは表示されたままで、リスト項目が列の間で重なったり不正に流れたりしなくなっていることを確認します。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- css
- 領域
- design, frontend
- issue の種類
- 機能追加
- 難易度
- 3/5
- 見積もり時間
- 1〜2日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100