Помогите с расцветкой сайта
08.07.2012 idiotquest Идиотские вопросы 3261
Как сменить цвет speedbar и меню. Там синим, а нужен, например серым/
Egor 08.07.2012 idiotquest Идиотские вопросы 3261
if( typeof tinymce === 'object' ) {
tinymce.get().forEach((item) => {
if( this.isDarkTheme() ) item.contentDocument.activeElement.classList.add('dle_theme_dark');
else item.contentDocument.activeElement.classList.remove('dle_theme_dark');
});
}