「MediaWiki:Common.css」の版間の差分
編集の要約なし |
編集の要約なし |
||
| 1行目: | 1行目: | ||
/* | /************************************************** | ||
* 共通:タイトル非表示(メインページ限定) | |||
**************************************************/ | |||
.page-Main_Page .firstHeading { | .page-Main_Page .firstHeading { | ||
display: none !important; | display: none !important; | ||
} | } | ||
/* | |||
/************************************************** | |||
* 共通:ダークモード時ロゴ反転 | |||
**************************************************/ | |||
.skin-vector-2022.vector-mode-night .tsrc-logo img { | .skin-vector-2022.vector-mode-night .tsrc-logo img { | ||
filter: invert(1) brightness(1.2); | filter: invert(1) brightness(1.2); | ||
| 9行目: | 15行目: | ||
} | } | ||
/* (デバッグ用?)ダークモード背景テスト */ | |||
body.skin-vector-2022.skin-dark { | body.skin-vector-2022.skin-dark { | ||
background-color: red !important; | background-color: red !important; | ||
} | } | ||
/* ロゴブロック内のpre/code背景を透明に */ | |||
.tsrc-logo-wrapper pre, | .tsrc-logo-wrapper pre, | ||
.tsrc-logo-wrapper code, | .tsrc-logo-wrapper code, | ||
| 19行目: | 27行目: | ||
border: none !important; | border: none !important; | ||
} | } | ||
/************************************************** | |||
* メインページ:TSRCトップボックス系 | |||
**************************************************/ | |||
.tsrc-infobox { | .tsrc-infobox { | ||
background-color: #F0F6F7; | background-color: #F0F6F7; | ||
} | } | ||
/* ダークモード用 */ | |||
.skin-theme-clientpref-night .tsrc-infobox { | .skin-theme-clientpref-night .tsrc-infobox { | ||
background-color: #1c2a3a; | background-color: #1c2a3a; | ||
} | } | ||
.tsrc-logo-block { | .tsrc-logo-block { | ||
text-align: center; | text-align: center; | ||
| 38行目: | 53行目: | ||
} | } | ||
/************************************************** | |||
* メインページ:観測ステータス警告ボックス | |||
**************************************************/ | |||
.tsrc-warning::before { | .tsrc-warning::before { | ||
content: "⚠ "; | content: "⚠ "; | ||
| 57行目: | 76行目: | ||
} | } | ||
/************************************************** | |||
* メインページ:トップページボックスグリッド | |||
**************************************************/ | |||
.tsrc-grid { | .tsrc-grid { | ||
display: flex; | display: flex; | ||
| 97行目: | 120行目: | ||
} | } | ||
/* | /* ダークモード用:ボックス内カラー */ | ||
.skin-theme-clientpref-night .tsrc-box { | .skin-theme-clientpref-night .tsrc-box { | ||
background: #1c1c1c; | background: #1c1c1c; | ||