Skip to content

Commit 40387bb

Browse files
committed
Add jp-ThemedContainer to the body
1 parent 4d9974d commit 40387bb

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

notebook/templates/consoles.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<link rel="stylesheet" type="text/css" href="{{ base_url | escape }}custom/custom.css">
1313
{% endif %}
1414
</head>
15-
<body>
15+
<body class="jp-ThemedContainer">
1616

1717
{# Copy so we do not modify the page_config with updates. #}
1818
{% set page_config_full = page_config.copy() %}

notebook/templates/edit.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<link rel="icon" type="image/x-icon" href="{{ base_url | escape }}static/favicons/favicon-file.ico" class="favicon">
99
{% endblock %}
1010
</head>
11-
<body data-notebook="edit">
11+
<body class="jp-ThemedContainer" data-notebook="edit">
1212

1313
{# Copy so we do not modify the page_config with updates. #}
1414
{% set page_config_full = page_config.copy() %}

notebook/templates/error.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
</head>
1616

17-
<body>
17+
<body class="jp-ThemedContainer">
1818

1919
{% block stylesheet %}
2020
<style type="text/css">

notebook/templates/notebooks.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<link rel="stylesheet" type="text/css" href="{{ base_url | escape }}custom/custom.css">
1313
{% endif %}
1414
</head>
15-
<body data-notebook="notebooks">
15+
<body class="jp-ThemedContainer" data-notebook="notebooks">
1616

1717
{# Copy so we do not modify the page_config with updates. #}
1818
{% set page_config_full = page_config.copy() %}

notebook/templates/terminals.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<link rel="stylesheet" type="text/css" href="{{ base_url | escape }}custom/custom.css">
1313
{% endif %}
1414
</head>
15-
<body>
15+
<body class="jp-ThemedContainer">
1616

1717
{# Copy so we do not modify the page_config with updates. #}
1818
{% set page_config_full = page_config.copy() %}

notebook/templates/tree.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<link rel="stylesheet" type="text/css" href="{{ base_url | escape }}custom/custom.css">
1313
{% endif %}
1414
</head>
15-
<body>
15+
<body class="jp-ThemedContainer">
1616

1717
{# Copy so we do not modify the page_config with updates. #}
1818
{% set page_config_full = page_config.copy() %}

0 commit comments

Comments
 (0)