123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) 2014-2016, Jupyter Development Team.
- |
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- .jp-JSONEditor {
- display: flex;
- flex-direction: column;
- width: 100%;
- }
- .jp-JSONEditor-host {
- flex: 1 1 auto;
- border: var(--jp-border-width) solid var(--jp-input-border-color);
- border-radius: 0px;
- background: var(--jp-layout-color0);
- min-height: 50px;
- padding: 1px;
- }
- .jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {
- border-color: red;
- outline-color: red;
- }
- .jp-JSONEditor-header {
- display: flex;
- flex: 1 0 auto;
- padding: 0 0 0 12px;
- }
- .jp-JSONEditor-header label {
- flex: 0 0 auto;
- }
- .jp-JSONEditor-commitButton {
- height: 16px;
- width: 16px;
- background-size: 18px;
- background-repeat: no-repeat;
- background-position: center;
- }
- .jp-JSONEditor-host.jp-mod-focused {
- background-color: var(--jp-input-active-background);
- border: 1px solid var(--jp-input-active-border-color);
- box-shadow: var(--jp-input-box-shadow);
- }
- .jp-Editor.jp-mod-dropTarget {
- border: var(--jp-border-width) solid var(--jp-input-active-border-color);
- box-shadow: var(--jp-input-box-shadow);
- }
|