/*----------------------------------------------------------------------------- | Copyright (c) Jupyter Development Team. | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ :root { --jp-private-settingeditor-row-height: 16px; --jp-private-settingeditor-add-width: 16px; --jp-private-settingeditor-key-width: 150px; --jp-private-settingeditor-type-width: 75px; } #setting-editor { background-color: var(--jp-layout-color0); border-top: var(--jp-border-width) solid var(--jp-border-color1); margin-top: -1px; outline: none; } #setting-editor::before { content: ''; display: block; height: var(--jp-toolbar-micro-height); background: var(--jp-toolbar-background); border-bottom: 1px solid var(--jp-toolbar-border-color); box-shadow: var(--jp-toolbar-box-shadow); z-index: 10; } #setting-editor .p-SplitPanel { height: 100%; width: 100%; } #setting-editor .p-SplitPanel-handle { background-color: var(--jp-border-color1); } #setting-editor .jp-SettingEditorInstructions { text-align: center; } #setting-editor .jp-SettingEditorInstructions-icon { display: inline-block; background-size: 60px; width: 60px; height: 78px; margin-right: 5px; } #setting-editor .jp-SettingEditorInstructions-title { font-size: 32px; font-weight: 200; line-height: 78px; vertical-align: top; } #setting-editor .jp-SettingEditorInstructions-text { font-size: var(--jp-ui-font-size2); } #setting-editor ul.jp-PluginList { background-color: var(--jp-layout-color1); color: var(--jp-ui-font-color1); font-size: var(--jp-ui-font-size1); list-style-type: none; margin: 0; padding: 0; min-width: 150px; width: 150px; } #setting-editor ul.jp-PluginList li { border: 1px solid transparent; overflow: hidden; padding: 2px 0 5px 5px; text-overflow: ellipsis; white-space: nowrap; } #setting-editor ul.jp-PluginList li:hover { background-color: var(--jp-layout-color2); border: 1px solid var(--jp-border-color2); } #setting-editor ul.jp-PluginList li.jp-mod-selected { background-color: var(--jp-brand-color1); } #setting-editor .jp-PluginList-icon { display: inline-block; height: 20px; width: 20px; margin-right: 3px; position: relative; top: 3px; } #setting-editor .jp-PluginEditor { padding: 10px; } #setting-editor .jp-PluginEditor .jp-JSONEditor-host { height: 100%; margin-left: 0; margin-right: 0; overflow: auto; } #setting-editor .jp-PluginEditor .jp-JSONEditor-header { position: absolute; right: 0; z-index: 9999; } #setting-editor .jp-TableEditor { border: 1px solid var(--jp-brand-color1); margin: 0; overflow-y: auto; padding: 0; } #setting-editor .jp-TableEditor legend { color: var(--jp-brand-color1); font-size: 70%; font-weight: bold; margin-left: 15px; } #setting-editor .jp-TableEditor table { table-layout: fixed; color: var(--jp-ui-font-color1); font-size: var(--jp-ui-font-size1); padding: 2px; width: calc(100% - 4px); overflow: hidden; } #setting-editor .jp-TableEditor tr { color: var(--jp-ui-font-color2); height: var( --jp-private-settingeditor-row-height); overflow: hidden; } #setting-editor .jp-TableEditor th { background-color: var(--jp-layout-color3); border: 1px solid transparent; font-weight: bold; height: var( --jp-private-settingeditor-row-height); } #setting-editor .jp-TableEditor td { border: 1px solid transparent; height: var( --jp-private-settingeditor-row-height); } #setting-editor .jp-TableEditor th.jp-TableEditor-add { width: var(--jp-private-settingeditor-add-width); } #setting-editor .jp-TableEditor th.jp-TableEditor-key { width: var(--jp-private-settingeditor-key-width); } #setting-editor .jp-TableEditor th.jp-TableEditor-type { width: var(--jp-private-settingeditor-type-width); } #setting-editor .jp-TableEditor td.jp-TableEditor-add { cursor: pointer; text-align: center; } #setting-editor .jp-TableEditor td.jp-TableEditor-add.jp-mod-active:hover { border: 1px solid var(--jp-toolbar-border-color); } #setting-editor .jp-TableEditor td.jp-TableEditor-key { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #setting-editor .jp-TableEditor td.jp-TableEditor-value { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #setting-editor .jp-TableEditor td.jp-TableEditor-type { text-align: right; } #setting-editor .jp-TableEditor .jp-TableEditor-button { display: inline-block; background-position: center; background-repeat: no-repeat; background-size: 8px; border: 1px solid var(--jp-layout-color3); border-radius: 8px; width: 8px; height: 8px; margin-top: 3px; }