Skip to content

Commit

Permalink
Fine tuning of css to be more consistent with the standard abap edito…
Browse files Browse the repository at this point in the history
…r colors
  • Loading branch information
dellagustin committed Jul 5, 2015
1 parent 02264a8 commit a43830c
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions extensionFiles/sap_note_enhancer.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,35 @@
}

.ci_block {
background-color: #E6E6E6;
/* background-color: #E6E6E6; */
background-color: rgb(230, 238, 240);
}

.keyword {
color: blue
}
color: blue;
}

.comment {
color: grey
/* Standard ABAP Editor Color and style */
color: grey;
font-style: italic;
}

.string {
color: green;
/* Standard ABAP Editor Color */
color: rgb(77,166,25);
}

.number {
.ci_insertion .string {
/* Strings in insertion blocks need a little more contrast */
color: darkgreen;
}

.number {
/* Standard ABAP Editor Color */
color: rgb(51,153,255);
}

pre {
display:inline;
font-size: 12px;
Expand Down

0 comments on commit a43830c

Please sign in to comment.