@jupyterlab/theme-light-extension 4.6.0-alpha.5 → 4.6.0-beta.1
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/variables.css +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/theme-light-extension",
|
|
3
|
-
"version": "4.6.0-
|
|
3
|
+
"version": "4.6.0-beta.1",
|
|
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.6.0-
|
|
36
|
-
"@jupyterlab/apputils": "^4.7.0-
|
|
37
|
-
"@jupyterlab/translation": "^4.6.0-
|
|
35
|
+
"@jupyterlab/application": "^4.6.0-beta.1",
|
|
36
|
+
"@jupyterlab/apputils": "^4.7.0-beta.1",
|
|
37
|
+
"@jupyterlab/translation": "^4.6.0-beta.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"rimraf": "~5.0.5",
|
package/style/variables.css
CHANGED
|
@@ -418,9 +418,6 @@ all of MD as it is not optimized for dense, information rich UIs.
|
|
|
418
418
|
|
|
419
419
|
/* Search-related styles */
|
|
420
420
|
|
|
421
|
-
--jp-search-toggle-off-opacity: 0.5;
|
|
422
|
-
--jp-search-toggle-hover-opacity: 0.8;
|
|
423
|
-
--jp-search-toggle-on-opacity: 1;
|
|
424
421
|
--jp-search-selected-match-background-color: rgb(245, 200, 0);
|
|
425
422
|
--jp-search-selected-match-color: black;
|
|
426
423
|
--jp-search-unselected-match-background-color: var(
|
|
@@ -457,6 +454,12 @@ all of MD as it is not optimized for dense, information rich UIs.
|
|
|
457
454
|
--jp-inspector-icon-color: var(--md-grey-700, #616161);
|
|
458
455
|
--jp-switch-color: var(--md-grey-400, #bdbdbd);
|
|
459
456
|
--jp-switch-true-position-color: var(--md-orange-900, #e65100);
|
|
457
|
+
|
|
458
|
+
/* Outline styles for focus-visible states needed for keyboard navigation.
|
|
459
|
+
2px is the minimum size required for accessibility.
|
|
460
|
+
*/
|
|
461
|
+
--jp-focus-outline-color: var(--jp-brand-color1);
|
|
462
|
+
--jp-focus-outline-width: 2px;
|
|
460
463
|
}
|
|
461
464
|
|
|
462
465
|
/* Completer specific styles */
|