Commit 907649d9 authored by ninabreznik's avatar ninabreznik

Update editor.js and context viewer

parent 0732f5e4
...@@ -11,7 +11,7 @@ var css = csjs` ...@@ -11,7 +11,7 @@ var css = csjs`
opacity : 0.8; opacity : 0.8;
} }
.container { .container {
padding : 5px 15px; padding : 1px 15px;
} }
.line { .line {
display : flex; display : flex;
......
...@@ -31,21 +31,21 @@ document.head.appendChild(yo` ...@@ -31,21 +31,21 @@ document.head.appendChild(yo`
.highlightreference { .highlightreference {
position:absolute; position:absolute;
z-index:20; z-index:20;
background-color: lightgrey; background-color: ${styles.editor.backgroundColor_Editor_Context_Highlights};
opacity: 0.7 opacity: 0.7
} }
.highlightreferenceline { .highlightreferenceline {
position:absolute; position:absolute;
z-index:20; z-index:20;
background-color: hsla(229, 75%, 87%, .5); /* lightBlue in style-guide.js*/ background-color: ${styles.editor.backgroundColor_Editor_Context_Highlights};
opacity: 0.7 opacity: 0.7
} }
.highlightcode { .highlightcode {
position:absolute; position:absolute;
z-index:20; z-index:20;
background-color:hsla(0, 82%, 82%, 1); /* red in style-guide.js */ background-color: ${styles.editor.backgroundColor_Editor_Context_Error_Highlights};
} }
</style> </style>
`) `)
......
...@@ -171,7 +171,7 @@ var css = csjs` ...@@ -171,7 +171,7 @@ var css = csjs`
} }
.contextviewcontainer{ .contextviewcontainer{
width : 100%; width : 100%;
height : 30px; height : 20px;
background-color : ${styles.editor.backgroundColor_Tabs_Highlights}; background-color : ${styles.editor.backgroundColor_Tabs_Highlights};
} }
` `
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment