EpicEditor
EpicEditor copied to clipboard
Allow array of theme CSS files
Would be very useful to allow the theme options to be an array of theme files to add, instead of just a single file.
E.g.
var opts = {
// ...
theme: {
preview: [
'/themes/preview/preview-dark.css',
'http://example.com/css/extra1.css',
'/themes/preview/extra2.css'
],
},
// ...
}
Good idea :) I've added it to the list.
In the short term I realised that I could use several @import url()
calls inside a single CSS file but it would be nicer if we could just define an array of style sheets!
:+1: I just implemented epiceditor and this feature would be nice.