File tree Expand file tree Collapse file tree 6 files changed +12
-13
lines changed 
src/datascience-ui/history-react Expand file tree Collapse file tree 6 files changed +12
-13
lines changed Original file line number Diff line number Diff line change 1+ Fix cell spacing issues
Original file line number Diff line number Diff line change 2525 grid-template-columns :  auto 1fr  ;
2626 grid-column-gap :  3px  ;
2727 width :  100%  ;
28+  margin-top : 16px  ;
2829}
2930
3031.content-div  {
3839 display :  grid;
3940}
4041
41- .hide  {
42-  visibility :  hidden;
43- }
44- 
4542.cell-result-container  {
4643 width :  100%  ;
4744}
Original file line number Diff line number Diff line change 3131.code-area  {
3232 position :  relative;
3333 width : 100%  ;
34+  margin-bottom : 16px  ;
3435}
3536
3637.code-area-editable  {
4546 font-style :  italic;
4647 color :  var (--override-watermark-color ,  var (--vscode-pickerGroup-border ));
4748}
48- 
49- .hide  {
50-  visibility :  hidden;
51- }
52- 
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export class CollapseButton extends React.Component<ICollapseButtonProps> {
2121
2222 public  render ( )  { 
2323 const  collapseInputPolygonClassNames  =  `collapse-input-svg ${ this . props . open  ? ' collapse-input-svg-rotate'  : '' } ${ this . props . theme }  ; 
24-  const  collapseInputClassNames  =  `collapse-input remove-style ${ this . props . visible  ? ''  : ' hide ' }  ; 
24+  const  collapseInputClassNames  =  `collapse-input remove-style ${ this . props . visible  ? ''  : ' invisible ' }  ; 
2525 // https://reactjs.org/docs/conditional-rendering.html#inline-if-with-logical--operator 
2626 // Comment here just because the (boolean && statement) was new to me 
2727 return  ( 
Original file line number Diff line number Diff line change 1515 background :  var (--override-background ,  var (--vscode-editor-background ));
1616 color :  var (--override-foreground ,  var (--vscode-editor-foreground ));
1717}
18+ 
19+ .hide  {
20+  display :  none;
21+ }
22+ 
23+ .invisible  {
24+  visibility :  hidden;
25+ }
Original file line number Diff line number Diff line change 88 right :  0 ;
99 background-color :  var (--vscode-editor-background );
1010}
11- .hide  {
12-  display :  none;
13- }
                         You can’t perform that action at this time. 
           
                  
0 commit comments