Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 18 additions & 5 deletions cms/envs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,16 +240,29 @@
from rooted_paths import rooted_glob

PIPELINE_CSS = {
'base-style': {
'style-vendor': {

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CONTEXT: new CSS naming convention - vendor, app (specific to product), externals/other prods (like xmodule)

'source_filenames': [
'css/vendor/normalize.css',
'css/vendor/font-awesome.css',
'js/vendor/CodeMirror/codemirror.css',
'css/vendor/ui-lightness/jquery-ui-1.8.22.custom.css',
'css/vendor/jquery.qtip.min.css',
'sass/base-style.css',
'xmodule/modules.css',
'xmodule/descriptor.css',
'js/vendor/markitup/skins/simple/style.css',

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's something odd here. xmodule/* is referenced here, and also inside of the old base-style.scss file. Looks like the ones referenced here were old and wrong?

'js/vendor/markitup/sets/wiki/style.css',
],
'output_filename': 'css/cms-base-style.css',
'output_filename': 'css/cms-style-vendor.css',
},
'style-app': {
'source_filenames': [
'sass/style-app.css',
],
'output_filename': 'css/cms-style-app.css',
},
'style-xmodule': {
'source_filenames': [
'sass/style-xmodule.css',
],
'output_filename': 'css/cms-style-xmodule.css',
},
}

Expand Down
196 changes: 0 additions & 196 deletions cms/static/css/ie.css

This file was deleted.

Binary file removed cms/static/fonts/vendor/FontAwesome.otf
Binary file not shown.
Binary file removed cms/static/fonts/vendor/fontawesome-webfont.eot
Binary file not shown.
Loading