@jupyterlab/theme-light-extension 4.3.0-alpha.1 → 4.3.0-beta.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/theme-light-extension",
3
- "version": "4.3.0-alpha.1",
3
+ "version": "4.3.0-beta.0",
4
4
  "description": "JupyterLab - Default Light Theme",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -32,9 +32,9 @@
32
32
  "watch": "tsc -b --watch"
33
33
  },
34
34
  "dependencies": {
35
- "@jupyterlab/application": "^4.3.0-alpha.1",
36
- "@jupyterlab/apputils": "^4.4.0-alpha.1",
37
- "@jupyterlab/translation": "^4.3.0-alpha.1"
35
+ "@jupyterlab/application": "^4.3.0-beta.0",
36
+ "@jupyterlab/apputils": "^4.4.0-beta.0",
37
+ "@jupyterlab/translation": "^4.3.0-beta.0"
38
38
  },
39
39
  "devDependencies": {
40
40
  "rimraf": "~5.0.5",
package/style/theme.css CHANGED
@@ -6,11 +6,11 @@
6
6
  @import './variables.css';
7
7
 
8
8
  /* Set the default typography for monospace elements */
9
- tt,
10
- code,
11
- kbd,
12
- samp,
13
- pre {
9
+ .jp-ThemedContainer tt,
10
+ .jp-ThemedContainer code,
11
+ .jp-ThemedContainer kbd,
12
+ .jp-ThemedContainer samp,
13
+ .jp-ThemedContainer pre {
14
14
  font-family: var(--jp-code-font-family);
15
15
  font-size: var(--jp-code-font-size);
16
16
  line-height: var(--jp-code-line-height);
@@ -422,3 +422,19 @@ all of MD as it is not optimized for dense, information rich UIs.
422
422
  --jp-switch-color: var(--md-grey-400, #bdbdbd);
423
423
  --jp-switch-true-position-color: var(--md-orange-900, #e65100);
424
424
  }
425
+
426
+ /* Completer specific styles */
427
+
428
+ .jp-Completer {
429
+ --jp-completer-type-background0: transparent;
430
+ --jp-completer-type-background1: #1f77b4;
431
+ --jp-completer-type-background2: #ff7f0e;
432
+ --jp-completer-type-background3: #2ca02c;
433
+ --jp-completer-type-background4: #d62728;
434
+ --jp-completer-type-background5: #9467bd;
435
+ --jp-completer-type-background6: #8c564b;
436
+ --jp-completer-type-background7: #e377c2;
437
+ --jp-completer-type-background8: #7f7f7f;
438
+ --jp-completer-type-background9: #bcbd22;
439
+ --jp-completer-type-background10: #17becf;
440
+ }
package/style/urls.css DELETED
@@ -1,25 +0,0 @@
1
- /*-----------------------------------------------------------------------------
2
- | Copyright (c) Jupyter Development Team.
3
- | Distributed under the terms of the Modified BSD License.
4
- |----------------------------------------------------------------------------*/
5
-
6
- /* TODO: finish cleaning up these cases of icon-as-css-background-image */
7
- :root {
8
- /* may be unused */
9
-
10
- /*--jp-icon-bug: url('icons/md/bug.svg');*/
11
-
12
- /* blocked by lumino interaction */
13
-
14
- /*--jp-icon-caret-down: url('icons/md/caretdown.svg');*/
15
-
16
- /*--jp-icon-caret-right: url('icons/md/caretright.svg');*/
17
-
18
- /*--jp-icon-caret-up: url('icons/md/caretup.svg');*/
19
-
20
- /*--jp-icon-caret-left: url('icons/md/caretleft.svg');*/
21
-
22
- /*--jp-icon-search: url('icons/md/search.svg');*/
23
-
24
- /*--jp-icon-search-white: url('icons/md/search-white.svg');*/
25
- }