base.css 611 B

12345678910111213141516171819202122232425
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) 2014-2019, Jupyter Development Team.
  3. |
  4. | Distributed under the terms of the Modified BSD License.
  5. |----------------------------------------------------------------------------*/
  6. .jp-PropertyInspector {
  7. display: flex;
  8. color: var(--jp-ui-font-color1);
  9. background: var(--jp-layout-color1);
  10. }
  11. .jp-PropertyInspector-content {
  12. flex-grow: 1;
  13. }
  14. .jp-PropertyInspector-placeholder {
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. }
  19. .jp-PropertyInspector-placeholderContent {
  20. padding: 8px;
  21. }