|
|
| (同じ利用者による、間の33版が非表示) |
| 1行目: |
1行目: |
| /* ===================================
| |
| WikiEditorツールバー - ライトモード時に濃い緑色の背景を適用
| |
| =================================== */
| |
|
| |
|
| /* タブセクション(上級、特殊文字、ヘルプ) */
| |
| .wikiEditor-ui-toolbar .tabs {
| |
| background-color: #c3e6cb !important;
| |
| background-image: none !important;
| |
| }
| |
|
| |
| /* メインツールバーセクション(太字、斜体、リンクなどのボタン) */
| |
| .wikiEditor-ui-toolbar .toolbar.section-main {
| |
| background-color: #c3e6cb !important;
| |
| background-image: none !important;
| |
| }
| |
|
| |
| /* セカンダリツールバーセクション(プレビューボタン) */
| |
| .wikiEditor-ui-toolbar .toolbar.section-secondary {
| |
| background-color: #c3e6cb !important;
| |
| background-image: none !important;
| |
| }
| |
|
| |
| /* ===================================
| |
| ダークモード時の調整
| |
| =================================== */
| |
|
| |
| /* ダークモードが有効な場合は、元のダークグレーの背景に戻す */
| |
| html.theme-dark .wikiEditor-ui-toolbar .tabs,
| |
| body.theme-dark .wikiEditor-ui-toolbar .tabs,
| |
| html.theme-dark .wikiEditor-ui-toolbar .toolbar.section-main,
| |
| body.theme-dark .wikiEditor-ui-toolbar .toolbar.section-main,
| |
| html.theme-dark .wikiEditor-ui-toolbar .toolbar.section-secondary,
| |
| body.theme-dark .wikiEditor-ui-toolbar .toolbar.section-secondary {
| |
| background-color: #414141 !important;
| |
| background-image: none !important;
| |
| }
| |
|
| |
| /* 自動モードでOSがダークモードの場合 */
| |
| @media (prefers-color-scheme: dark) {
| |
| html.theme-auto .wikiEditor-ui-toolbar .tabs,
| |
| body.theme-auto .wikiEditor-ui-toolbar .tabs,
| |
| html.theme-auto .wikiEditor-ui-toolbar .toolbar.section-main,
| |
| body.theme-auto .wikiEditor-ui-toolbar .toolbar.section-main,
| |
| html.theme-auto .wikiEditor-ui-toolbar .toolbar.section-secondary,
| |
| body.theme-auto .wikiEditor-ui-toolbar .toolbar.section-secondary {
| |
| background-color: #414141 !important;
| |
| background-image: none !important;
| |
| }
| |
| }
| |