12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*
- * Copyright 2018-2022 Elyra Authors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- .elyra-metadataEditor .jp-InputGroup {
- width: 100%;
- }
- .elyra-form-DropDown-item {
- width: 100%;
- display: flex;
- justify-content: left;
- margin: 0;
- border-radius: 0;
- }
- .elyra-metadataEditor {
- padding: 20px;
- display: flex;
- flex-wrap: wrap;
- height: 100%;
- align-content: flex-start;
- align-items: flex-start;
- justify-content: flex-start;
- }
- .elyra-metadataEditor h3 {
- flex-basis: 100%;
- margin-bottom: 15px;
- color: var(--jp-ui-font-color1);
- }
- .elyra-metadataEditor .elyra-form-code.jp-CodeMirrorEditor {
- background-color: var(--jp-cell-editor-background);
- border: var(--jp-border-width) solid var(--jp-input-border-color);
- overflow-y: auto;
- resize: vertical;
- min-height: 150px;
- height: 150px;
- padding-bottom: 10px;
- cursor: initial;
- }
- .elyra-metadataEditor .CodeMirror.cm-s-jupyter {
- background-color: inherit;
- height: 100%;
- }
- .elyra-metadataEditor .elyra-metadataEditor-code {
- height: auto;
- flex-basis: 100%;
- display: flex;
- }
- .elyra-metadataEditor-code .elyra-form-code {
- height: 100%;
- }
- .elyra-metadata-editor {
- overflow-y: auto;
- }
|