index.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Copyright 2018-2022 Elyra Authors
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. .elyra-metadataEditor .jp-InputGroup {
  17. width: 100%;
  18. }
  19. .elyra-form-DropDown-item {
  20. width: 100%;
  21. display: flex;
  22. justify-content: left;
  23. margin: 0;
  24. border-radius: 0;
  25. }
  26. .elyra-metadataEditor {
  27. padding: 20px;
  28. display: flex;
  29. flex-wrap: wrap;
  30. height: 100%;
  31. align-content: flex-start;
  32. align-items: flex-start;
  33. justify-content: flex-start;
  34. }
  35. .elyra-metadataEditor h3 {
  36. flex-basis: 100%;
  37. margin-bottom: 15px;
  38. color: var(--jp-ui-font-color1);
  39. }
  40. .elyra-metadataEditor .elyra-form-code.jp-CodeMirrorEditor {
  41. background-color: var(--jp-cell-editor-background);
  42. border: var(--jp-border-width) solid var(--jp-input-border-color);
  43. overflow-y: auto;
  44. resize: vertical;
  45. min-height: 150px;
  46. height: 150px;
  47. padding-bottom: 10px;
  48. cursor: initial;
  49. }
  50. .elyra-metadataEditor .CodeMirror.cm-s-jupyter {
  51. background-color: inherit;
  52. height: 100%;
  53. }
  54. .elyra-metadataEditor .elyra-metadataEditor-code {
  55. height: auto;
  56. flex-basis: 100%;
  57. display: flex;
  58. }
  59. .elyra-metadataEditor-code .elyra-form-code {
  60. height: 100%;
  61. }
  62. .elyra-metadata-editor {
  63. overflow-y: auto;
  64. }