Skip to content

Commit

Permalink
Fixed issue #13669: Stylesheet missing in themes/survey fruity
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisGac committed Aug 7, 2018
1 parent f00bd4e commit 78fb5f4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 26 deletions.
1 change: 0 additions & 1 deletion themes/survey/bootswatch/config.xml
Expand Up @@ -32,7 +32,6 @@
-->
<files>
<css>
<add>css/ajaxify.css</add>
<add>css/theme.css</add>
<add>css/custom.css</add>
</css>
Expand Down
24 changes: 0 additions & 24 deletions themes/survey/bootswatch/css/ajaxify.css

This file was deleted.

6 changes: 5 additions & 1 deletion themes/survey/fruity/config.xml
Expand Up @@ -29,10 +29,14 @@
Here the list of the css/js files to add to the template package.
About packages in Yii: http://www.yiiframework.com/doc/api/1.1/CClientScript#packages-detail
"css/variations/sea_green.css" will be updated via the theme variation options
NOTE: The "add" tag also count as a "replace" tag.
Eg: <add>css/theme.css</add> will replace the vanilla css/theme.css
But, all files that are already added in vanilla will be also added here.
Eg: css/ajaxify.css is already added in vanilla, it doen't exist in this theme, so ne need to add it here.
-->
<files>
<css>
<add>css/ajaxify.css</add>
<add>css/animate.css</add>
<add>css/variations/sea_green.css</add>
<add>css/theme.css</add>
Expand Down
5 changes: 5 additions & 0 deletions themes/survey/vanilla/config.xml
Expand Up @@ -29,6 +29,11 @@
<!--
Here the list of the css/js files to add to the template package.
About packages in Yii: http://www.yiiframework.com/doc/api/1.1/CClientScript#packages-detail
NOTE: The "add" tag also count as a "replace" tag.
Eg: In any theme extended vanilla, ""<add>css/theme.css</add>"" will replace the vanilla css/theme.css
But, all files that are already added in vanilla will be also added in the extended theme.
Eg: css/ajaxify.css is already added in vanilla. If it's not modified in the extended theme, if you want to use the vanilla css/ajaxify.css, just don't add it all in the extened theme config
-->
<files>
<css>
Expand Down

0 comments on commit 78fb5f4

Please sign in to comment.