.make dnd target more distinguishable

This commit is contained in:
rebornix 2017-02-22 13:50:35 -08:00
parent dea9dd9b3f
commit a3be2428bc

View file

@ -4,14 +4,14 @@
*--------------------------------------------------------------------------------------------*/
.monaco-editor.vs .dnd-target {
border-right: 1px dotted black;
border-right: 2px dotted black;
color: white; /* opposite of black */
}
.monaco-editor.vs-dark .dnd-target {
border-right: 1px dotted #AEAFAD;
border-right: 2px dotted #AEAFAD;
color: #51504f; /* opposite of #AEAFAD */
}
.monaco-editor.hc-black .dnd-target {
border-right: 1px dotted #fff;
border-right: 2px dotted #fff;
color: #000; /* opposite of #fff */
}