@jupyterlab/theme-light-extension 4.3.0-alpha.0 → 4.3.0-alpha.2
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 +4 -4
- package/style/theme.css +5 -5
- package/style/urls.css +0 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/theme-light-extension",
|
|
3
|
-
"version": "4.3.0-alpha.
|
|
3
|
+
"version": "4.3.0-alpha.2",
|
|
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.
|
|
36
|
-
"@jupyterlab/apputils": "^4.4.0-alpha.
|
|
37
|
-
"@jupyterlab/translation": "^4.3.0-alpha.
|
|
35
|
+
"@jupyterlab/application": "^4.3.0-alpha.2",
|
|
36
|
+
"@jupyterlab/apputils": "^4.4.0-alpha.2",
|
|
37
|
+
"@jupyterlab/translation": "^4.3.0-alpha.2"
|
|
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);
|
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
|
-
}
|