Skip to content

Commit 750e57f

Browse files
authored
Issue #2: More specific name for theme stylesheets (#3)
1 parent 405e582 commit 750e57f

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

tinymce_codehighlight.module

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,19 @@ function tinymce_codehighlight_tinymce_codehighlight_theme_info() {
9090
$themes['default'] = array(
9191
'name' => 'default',
9292
'label' => t('Default'),
93-
'stylesheet_path' => $path . '/themes/default/styles.css',
93+
'stylesheet_path' => $path . '/themes/default/prismjs-styles.css',
9494
'screenshot_path' => $path . '/themes/default/screenshot-default.png',
9595
);
9696
$themes['dark'] = array(
9797
'name' => 'dark',
9898
'label' => t('Dark'),
99-
'stylesheet_path' => $path . '/themes/dark/styles.css',
99+
'stylesheet_path' => $path . '/themes/dark/prismjs-styles.css',
100100
'screenshot_path' => $path . '/themes/dark/screenshot-dark.png',
101101
);
102102
$themes['striped'] = array(
103103
'name' => 'striped',
104104
'label' => t('Striped'),
105-
'stylesheet_path' => $path . '/themes/striped/styles.css',
105+
'stylesheet_path' => $path . '/themes/striped/prismjs-styles.css',
106106
'screenshot_path' => $path . '/themes/striped/screenshot-striped.png',
107107
);
108108

0 commit comments

Comments
 (0)