@jupyterlab/console 4.0.0-alpha.2 → 4.0.0-alpha.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/style/base.css CHANGED
@@ -46,8 +46,9 @@
46
46
  }
47
47
 
48
48
  /* This rule is for styling cell run by another activity in this console */
49
- .jp-CodeConsole-content .jp-Cell.jp-CodeConsole-foreignCell {
50
- }
49
+
50
+ /* .jp-CodeConsole-content .jp-Cell.jp-CodeConsole-foreignCell {
51
+ } */
51
52
 
52
53
  .jp-CodeConsole-content .jp-InputArea-editor.jp-InputArea-editor {
53
54
  background: transparent;
@@ -75,9 +76,10 @@
75
76
  overflow: auto;
76
77
  border-top: var(--jp-border-width) solid var(--jp-toolbar-border-color);
77
78
  padding: var(--jp-cell-padding) var(--jp-console-padding);
79
+
78
80
  /* This matches the box shadow on the notebook toolbar, eventually we should create
79
81
  * CSS variables for this */
80
- box-shadow: 0px 0.4px 6px 0px rgba(0, 0, 0, 0.1);
82
+ box-shadow: 0 0.4px 6px 0 rgba(0, 0, 0, 0.1);
81
83
  background: var(--jp-layout-color1);
82
84
  }
83
85
 
package/style/index.css CHANGED
@@ -7,9 +7,9 @@
7
7
  @import url('~@lumino/widgets/style/index.css');
8
8
  @import url('~@jupyterlab/ui-components/style/index.css');
9
9
  @import url('~@jupyterlab/apputils/style/index.css');
10
+ @import url('~@jupyterlab/rendermime/style/index.css');
10
11
  @import url('~@lumino/dragdrop/style/index.css');
11
12
  @import url('~@jupyterlab/codeeditor/style/index.css');
12
- @import url('~@jupyterlab/rendermime/style/index.css');
13
13
  @import url('~@jupyterlab/cells/style/index.css');
14
14
 
15
15
  @import url('./base.css');
package/style/index.js CHANGED
@@ -7,9 +7,9 @@
7
7
  import '@lumino/widgets/style/index.js';
8
8
  import '@jupyterlab/ui-components/style/index.js';
9
9
  import '@jupyterlab/apputils/style/index.js';
10
+ import '@jupyterlab/rendermime/style/index.js';
10
11
  import '@lumino/dragdrop/style/index.js';
11
12
  import '@jupyterlab/codeeditor/style/index.js';
12
- import '@jupyterlab/rendermime/style/index.js';
13
13
  import '@jupyterlab/cells/style/index.js';
14
14
 
15
15
  import './base.css';