|
|
| (同じ利用者による、間の23版が非表示) |
| 1行目: |
1行目: |
| /* ============================================
| |
| WikiEditorタブの「>」記号のスタイル
| |
| MediaWiki:Common.cssに追加するための補足CSS
| |
| ============================================ */
| |
|
| |
|
| /* このCSSは、theme-toggle.lessのスタイルが効かない場合の
| |
| フォールバックとして使用できます。
| |
| MediaWiki:Common.cssの末尾に追加してください。 */
| |
|
| |
| /* デフォルト(ライトモード): タブのテキストと記号を黒に */
| |
| .wikiEditor-ui-toolbar .tabs .tab,
| |
| .wikiEditor-ui-toolbar .tabs .tab a,
| |
| .wikiEditor-ui-toolbar .tabs .tab a::before,
| |
| .wikiEditor-ui-toolbar .tabs .tab a::after,
| |
| .wikiEditor-ui-toolbar .tabs .tab::before,
| |
| .wikiEditor-ui-toolbar .tabs .tab::after {
| |
| color: #202124 !important;
| |
| }
| |
|
| |
| /* ライトモード専用 */
| |
| body.theme-light .wikiEditor-ui-toolbar .tabs .tab,
| |
| body.theme-light .wikiEditor-ui-toolbar .tabs .tab a,
| |
| body.theme-light .wikiEditor-ui-toolbar .tabs .tab a::before,
| |
| body.theme-light .wikiEditor-ui-toolbar .tabs .tab a::after,
| |
| body.theme-light .wikiEditor-ui-toolbar .tabs .tab::before,
| |
| body.theme-light .wikiEditor-ui-toolbar .tabs .tab::after,
| |
| html.theme-light .wikiEditor-ui-toolbar .tabs .tab,
| |
| html.theme-light .wikiEditor-ui-toolbar .tabs .tab a,
| |
| html.theme-light .wikiEditor-ui-toolbar .tabs .tab a::before,
| |
| html.theme-light .wikiEditor-ui-toolbar .tabs .tab a::after,
| |
| html.theme-light .wikiEditor-ui-toolbar .tabs .tab::before,
| |
| html.theme-light .wikiEditor-ui-toolbar .tabs .tab::after {
| |
| color: #202124 !important;
| |
| }
| |
|
| |
| /* ダークモード専用: タブのテキストと記号を白に */
| |
| body.theme-dark .wikiEditor-ui-toolbar .tabs .tab,
| |
| body.theme-dark .wikiEditor-ui-toolbar .tabs .tab a,
| |
| body.theme-dark .wikiEditor-ui-toolbar .tabs .tab a::before,
| |
| body.theme-dark .wikiEditor-ui-toolbar .tabs .tab a::after,
| |
| body.theme-dark .wikiEditor-ui-toolbar .tabs .tab::before,
| |
| body.theme-dark .wikiEditor-ui-toolbar .tabs .tab::after,
| |
| html.theme-dark .wikiEditor-ui-toolbar .tabs .tab,
| |
| html.theme-dark .wikiEditor-ui-toolbar .tabs .tab a,
| |
| html.theme-dark .wikiEditor-ui-toolbar .tabs .tab a::before,
| |
| html.theme-dark .wikiEditor-ui-toolbar .tabs .tab a::after,
| |
| html.theme-dark .wikiEditor-ui-toolbar .tabs .tab::before,
| |
| html.theme-dark .wikiEditor-ui-toolbar .tabs .tab::after {
| |
| color: #e0e0e0 !important;
| |
| }
| |
|
| |
| /* 自動モード + システムがライトテーマの場合 */
| |
| @media (prefers-color-scheme: light) {
| |
| body.theme-auto .wikiEditor-ui-toolbar .tabs .tab,
| |
| body.theme-auto .wikiEditor-ui-toolbar .tabs .tab a,
| |
| body.theme-auto .wikiEditor-ui-toolbar .tabs .tab a::before,
| |
| body.theme-auto .wikiEditor-ui-toolbar .tabs .tab a::after,
| |
| body.theme-auto .wikiEditor-ui-toolbar .tabs .tab::before,
| |
| body.theme-auto .wikiEditor-ui-toolbar .tabs .tab::after,
| |
| html.theme-auto .wikiEditor-ui-toolbar .tabs .tab,
| |
| html.theme-auto .wikiEditor-ui-toolbar .tabs .tab a,
| |
| html.theme-auto .wikiEditor-ui-toolbar .tabs .tab a::before,
| |
| html.theme-auto .wikiEditor-ui-toolbar .tabs .tab a::after,
| |
| html.theme-auto .wikiEditor-ui-toolbar .tabs .tab::before,
| |
| html.theme-auto .wikiEditor-ui-toolbar .tabs .tab::after {
| |
| color: #202124 !important;
| |
| }
| |
| }
| |
|
| |
| /* 自動モード + システムがダークテーマの場合 */
| |
| @media (prefers-color-scheme: dark) {
| |
| body.theme-auto .wikiEditor-ui-toolbar .tabs .tab,
| |
| body.theme-auto .wikiEditor-ui-toolbar .tabs .tab a,
| |
| body.theme-auto .wikiEditor-ui-toolbar .tabs .tab a::before,
| |
| body.theme-auto .wikiEditor-ui-toolbar .tabs .tab a::after,
| |
| body.theme-auto .wikiEditor-ui-toolbar .tabs .tab::before,
| |
| body.theme-auto .wikiEditor-ui-toolbar .tabs .tab::after,
| |
| html.theme-auto .wikiEditor-ui-toolbar .tabs .tab,
| |
| html.theme-auto .wikiEditor-ui-toolbar .tabs .tab a,
| |
| html.theme-auto .wikiEditor-ui-toolbar .tabs .tab a::before,
| |
| html.theme-auto .wikiEditor-ui-toolbar .tabs .tab a::after,
| |
| html.theme-auto .wikiEditor-ui-toolbar .tabs .tab::before,
| |
| html.theme-auto .wikiEditor-ui-toolbar .tabs .tab::after {
| |
| color: #e0e0e0 !important;
| |
| }
| |
| }
| |