Skip to content

Commit a605fa9

Browse files
Enhancement: Added drop shadows to markdown, text, and tree views (#6893)
* Added Drop Shadows Adjusted drop shadows for tree view, markdown and text notebooks. * Update: Corrected Tree View Shadows Tree View drop shadow values are in co-ordination with the others. * Responsive padding for main-panel Adjusted main-panel padding to be responsive * Update: media-query rearranged * Update: Body selectors with filters Added data-format body selectors to the css * Re-written media query Re-wrote the media query for allowing responsiveness without a refresh * Update Playwright Snapshots * Update Playwright Snapshots --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 11cb93f commit a605fa9

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

packages/application/style/base.css

+14
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@ body[data-notebook='edit'] #spacer-widget-bottom {
8080
box-shadow: var(--jp-elevation-z4);
8181
}
8282

83+
.jp-TreePanel > .lm-TabPanel-stackedPanel {
84+
box-shadow: var(--jp-elevation-z4);
85+
}
86+
8387
body[data-notebook='notebooks'] #main-panel {
8488
margin-left: unset;
8589
margin-right: unset;
@@ -89,3 +93,13 @@ body[data-notebook='notebooks'] #main-panel {
8993
body[data-notebook='notebooks'] #spacer-widget-top {
9094
min-height: unset;
9195
}
96+
97+
#main-panel > .jp-TreePanel {
98+
padding: 0px 5px;
99+
}
100+
101+
@media only screen and (max-width: 760px) {
102+
#main-panel > .jp-TreePanel {
103+
margin: 0px -5px;
104+
}
105+
}

packages/notebook-extension/style/base.css

+1-5
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,7 @@ body[data-notebook='notebooks'] .jp-WindowedPanel-window {
152152
/* Notebook box shadow */
153153

154154
body[data-notebook='notebooks'] .jp-Notebook > *:first-child:not(:last-child) {
155-
box-shadow: 0px 0px 12px 1px var(--jp-shadow-umbra-color);
156-
}
157-
158-
body[data-notebook='notebooks'] .jp-Notebook > *:first-child:not(:last-child) {
159-
box-shadow: 0px 0px 12px 1px var(--jp-shadow-umbra-color);
155+
box-shadow: var(--jp-elevation-z4);
160156
}
161157

162158
body[data-notebook='notebooks']
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)