fixed autocomplete styling in dark mode.

This commit is contained in:
Boaz Leskes 2014-01-22 14:50:17 +01:00
parent 23f50dd619
commit de41fa2035
2 changed files with 16 additions and 1 deletions

View file

@ -29,7 +29,7 @@ border-left: 0px;\
border-bottom: 1px solid #F8F8F0\
}\
.ace-sense-dark .ace_marker-layer .ace_selection {\
background: #49483E\
background: #222\
}\
.ace-sense-dark.ace_multiselect .ace_selection.ace_start {\
box-shadow: 0 0 3px 0px #272822;\

View file

@ -4,6 +4,21 @@
border-top: 1px solid #3e444c;
background-color: #2e3236;
}
/* sadly ace doesn't carry the theme over to the auto complete popup */
.ace_autocomplete {
background-color: #2e3236 !important;
color: #bbbfc2 !important;
}
.ace_autocomplete .ace_completion-highlight {
color: #AE81FF !important;
}
.ace_selected {
background: #222 !important;
}
/* end of theming for auto complete- remove when issue in ace is fixed. */
.ace_url {
color: #66D9EF;