その他の操作
編集の要約なし タグ: 差し戻し済み |
Umeda がページ テンプレート:Timeline styles/styles.css のコンテンツモデルを "ウィキテキスト" から "サニタイズCSS" に変更しました |
||
| (同じ利用者による、間の2版が非表示) | |||
| 1行目: | 1行目: | ||
table.timeline { | table.timeline { | ||
box-shadow: none; | box-shadow: none; | ||
} | } | ||
| 11行目: | 10行目: | ||
position: relative; | position: relative; | ||
margin-left: 8px; | margin-left: 8px; | ||
padding: | padding: 20px; | ||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
} | } | ||
| 26行目: | 23行目: | ||
display: block; | display: block; | ||
width: 2px; | width: 2px; | ||
background-color: var( border-color-base ); | background-color: var( --border-color-base ); | ||
} | } | ||
table.timeline tr td:first-child { | table.timeline tr td:first-child {; | ||
color: var( --color-emphasized ); | |||
} | } | ||
| 40行目: | 35行目: | ||
height: 8px; | height: 8px; | ||
display: block; | display: block; | ||
background-color: var( color-subtle ); | background-color: var( --color-subtle ); | ||
border-radius: 100%; | border-radius: 100%; | ||
position: absolute; | position: absolute; | ||
2025年1月11日 (土) 05:01時点における最新版
table.timeline {
box-shadow: none;
}
table.timeline, table.timeline tbody {
display: block;
}
table.timeline tr {
position: relative;
margin-left: 8px;
padding: 20px;
display: flex;
flex-direction: column;
}
table.timeline tr:before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: -1px;
display: block;
width: 2px;
background-color: var( --border-color-base );
}
table.timeline tr td:first-child {;
color: var( --color-emphasized );
}
table.timeline tr td:first-child:before {
content: "";
width: 8px;
height: 8px;
display: block;
background-color: var( --color-subtle );
border-radius: 100%;
position: absolute;
left: -4px;
margin-top: 8px;
}
table.timeline tr td {
padding: 0;
border: 0 !important;
}