@@ -1289,8 +1289,8 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditor
1289
1289
}
1290
1290
1291
1291
export const notebookCellBorder = registerColor ( 'notebook.cellBorderColor' , {
1292
- dark : transparent ( PANEL_BORDER , .6 ) ,
1293
- light : transparent ( PANEL_BORDER , .4 ) ,
1292
+ dark : transparent ( PANEL_BORDER , .4 ) ,
1293
+ light : transparent ( PANEL_BORDER , .3 ) ,
1294
1294
hc : PANEL_BORDER
1295
1295
} , nls . localize ( 'notebook.cellBorderColor' , "The border color for notebook cells." ) ) ;
1296
1296
@@ -1332,14 +1332,14 @@ export const CELL_TOOLBAR_SEPERATOR = registerColor('notebook.cellToolbarSeperat
1332
1332
} , nls . localize ( 'cellToolbarSeperator' , "The color of the seperator in the cell bottom toolbar" ) ) ;
1333
1333
1334
1334
export const cellFocusBackground = registerColor ( 'notebook.cellFocusBackground' , {
1335
- dark : transparent ( PANEL_BORDER , .6 ) ,
1336
- light : transparent ( PANEL_BORDER , .4 ) ,
1335
+ dark : transparent ( PANEL_BORDER , .4 ) ,
1336
+ light : transparent ( PANEL_BORDER , .3 ) ,
1337
1337
hc : PANEL_BORDER
1338
1338
} , nls . localize ( 'cellFocusBackground' , "The background color of focused or hovered cells" ) ) ;
1339
1339
1340
1340
export const focusedCellShadow = registerColor ( 'notebook.focusedCellShadow' , {
1341
- dark : Color . black . transparent ( 0.8 ) ,
1342
- light : Color . black . transparent ( 0.06 ) ,
1341
+ dark : Color . black . transparent ( 0.6 ) ,
1342
+ light : Color . black . transparent ( 0.04 ) ,
1343
1343
hc : Color . transparent
1344
1344
} , nls . localize ( 'cellShadow' , "The color of the shadow on the focused or hovered cell" ) ) ;
1345
1345
@@ -1465,10 +1465,10 @@ registerThemingParticipant((theme, collector) => {
1465
1465
const cellShadowColor = theme . getColor ( focusedCellShadow ) ;
1466
1466
if ( cellShadowColor ) {
1467
1467
// Code cells
1468
- collector . addRule ( `.monaco-workbench .notebookOverlay .monaco-list .monaco-list-row.focused .cell-shadow { box-shadow: 0px 2px 8px 2px ${ cellShadowColor } }` ) ;
1468
+ collector . addRule ( `.monaco-workbench .notebookOverlay .monaco-list .monaco-list-row.focused .cell-shadow { box-shadow: 0px 1px 4px 2px ${ cellShadowColor } }` ) ;
1469
1469
1470
1470
// Markdown cells
1471
- collector . addRule ( `.monaco-workbench .notebookOverlay .monaco-list .markdown-cell-row.focused { box-shadow: 0px 2px 8px 2px ${ cellShadowColor } }` ) ;
1471
+ collector . addRule ( `.monaco-workbench .notebookOverlay .monaco-list .markdown-cell-row.focused { box-shadow: 0px 1px 4px 2px ${ cellShadowColor } }` ) ;
1472
1472
}
1473
1473
1474
1474
const cellInsertionIndicatorColor = theme . getColor ( cellInsertionIndicator ) ;
0 commit comments