# [[Settings Window]] ```css /* make the window bigger and more compact - courtesy: pseudometa */ .modal.mod-settings { height: 92.5%; width: 90%; } .modal-close-button { top: 0px; right:3px; } .vertical-tab-content-container { padding-bottom: 0 !important; padding-top: 1em !important; padding-left: 1em !important; padding-right: 1em !important; height: 40em !important; } .vertical-tab-header { height: 40em !important; } .setting-item { padding-top: 0.5em; padding-bottom: 0.5em; } .setting-item-description{ font-size: 0.85em; line-height: 1.5em; } .setting-item-name{ font-size: 0.95em; line-height: 1.5em; } .mod-cta, .dropdown{ font-size: 0.85em !important; line-height: 1.5em; } .horizontal-tab-content, .vertical-tab-content { background:var(--background-primary); padding-bottom:100px; } .modal.mod-settings .vertical-tab-header { background:var(--background-secondary); padding-top: 0; } .vertical-tab-header-group-title { color:var(--text-normal); font-size:0.8em; letter-spacing:0.1em; font-weight:600; padding-bottom:0; } .vertical-tab-nav-item { padding:3px 3px 3px 0.9em; color:var(--text-muted); background:var(--background-secondary); } ``` ```css /* make the plug-ins window bigger and more compact - courtesy: pseudometa */ .modal.mod-community-plugin { height: 93%; max-width: unset; width: 96%; } .community-plugin-item { padding-top: 0.1em; padding-left: 0.9em; padding-right: 0.3em; padding-bottom: 0.1em; line-height: 1.2em; margin-top: 0.1em; } .community-plugin-search-summary.u-muted{ font-weight: 600; padding-left: 0.9em; } .community-plugin-author, .community-plugin-desc, .community-plugin-version { font-size: 0.85em !important; line-height: 1.3em; color: var(--text-muted); } .community-plugin-author, .community-plugin-version{ font-style: italic; } .community-plugin-name { line-height: 1.2em; font-size: 0.9em; font-weight: 500; } .flair.mod-pop { top: 4px; } .install{ display:none; } .community-plugin-downloads::before, .community-plugin-downloads-text { content: "↓"; font-size: 0.9em; color: var(--text-muted); } ``` # Settings buttons colour ```css /* Obsidian settings, change color of: */ /* the enable/disable buttons */ .checkbox-container.is-enabled { background-color: var(--base2); } /* "Check for updates" button */ button.mod-cta { background-color: var(--base2); } button.mod-cta:hover { background-color: var(--base3); } /* "Installed" button in 3rd party plug-ins tab */ span.flair.mod-pop { background-color: var(--base2); } /* tab "3rd party plugins" font color Browse button */ .setting-item-control button { background-color: var(--base2) !important; color: var(--base3); } .setting-item-control button:hover { background-color: var(--base5) !important; color: var(--base3); } /* change color of buttons in Settings > Appearance > Themes > Browse */ .modal button:not(.mod-cta):not(.mod-warning) { background-color: var(--base2); } /* In tab "Appearance" set color of "refresh" and "Open themes folder" icons */ .setting-editor-extra-setting-button.clickable-icon { color: var(--base2); } /* link color in the settings e.g. in description of plug-in */ a { color: var(--base3); } a:hover { color: var(--base3); } /* dropdown box color, excl. arrow */ .dropdown { background-color: var(--text-accent); color: white; border: none; } .setting-item-control .dropdown:hover { background-color: rgb(202, 89, 86); color: white; border: none; } /* dropdown box arrow color /* NOTE: in the long line of code below, the color is designated by 23ffffff. ffffff = white. /* You can change it to any color using a hex code */ .dropdown { background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E); } ```