metadata container border

This commit is contained in:
rebornix
2020-08-20 19:48:20 -07:00
parent 4f2820c282
commit a3e008ab60
@@ -278,7 +278,16 @@ registerThemingParticipant((theme, collector) => {
const cellBorderColor = theme.getColor(notebookCellBorder);
if (cellBorderColor) {
collector.addRule(`.notebook-text-diff-editor .editor-container { border: 1px solid ${cellBorderColor};}`);
collector.addRule(`.notebook-text-diff-editor .metadata-editor-container { border: 1px solid ${cellBorderColor};}`);
collector.addRule(`.notebook-text-diff-editor .metadata-editor-container {
border-left: 1px solid ${cellBorderColor};
border-right: 1px solid ${cellBorderColor};
border-bottom: 1px solid ${cellBorderColor};
}`);
collector.addRule(`.notebook-text-diff-editor .cell-diff-editor-container .metadata-container {
border-left: 1px solid ${cellBorderColor};
border-right: 1px solid ${cellBorderColor};
border-bottom: 1px solid ${cellBorderColor};
}`);
}
const diffDiagonalFillColor = theme.getColor(diffDiagonalFill);