/*----------------------------------------------------------------------------- | Copyright (c) 2014-2017, Jupyter Development Team. | | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ .jp-Dialog { position: absolute; z-index: 10000; display: flex; flex-direction: column; align-items: center; justify-content: center; top: 0px; left: 0px; margin: 0; padding: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.25); color: var(--jp-ui-font-color1); } .jp-Dialog-content { display: flex; flex-direction: column; margin-left: auto; margin-right: auto; background: #FAFAFA; padding: 24px; padding-bottom: 12px; min-width: 300px; min-height: 150px; max-width: 500px; max-height: 500px; box-sizing: border-box; box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.5); word-wrap: break-word; } .jp-Dialog-header { flex: 0 0 auto; padding-bottom: 12px; font-size: var(--jp-ui-font-size3); font-weight: 400; color: var(--jp-ui-font-color0); } .jp-Dialog-body { display: flex; flex-direction: column; flex: 1 1 auto; font-size: var(--jp-ui-font-size2); background: #FAFAFA; overflow: auto; max-width: 252px; } .jp-Dialog-footer { display: flex; flex-direction: row; justify-content: flex-end; flex: 0 0 auto; margin-top: 12px; margin-left: -12px; margin-right: -12px; padding: 12px; } .jp-Dialog-title { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } button.jp-mod-accept { background: var(--jp-brand-color1); color: var(--jp-inverse-ui-font-color0); } button.jp-mod-reject { background: #9E9E9E; margin-right: 12px; color: var(--jp-inverse-ui-font-color0); } button.jp-mod-warn { background: var(--jp-error-color1); color: var(--jp-inverse-ui-font-color0); } .jp-Dialog-body > .jp-select-wrapper { width: 252px; border: var(--jp-border-width) solid var(--jp-border-color1); } .jp-Dialog-body > button { padding: 0px 16px; } .jp-Dialog-body > label { padding-top: 4px; padding-bottom: 4px; line-height: 1.4; font-size: var(--jp-ui-font-size1); color: var(--md-grey-700); }