mirror of https://github.com/zulip/zulip.git
webpack: Transition activity.css to use webpack.
The activity.scss file is added to activity bundle.
This commit is contained in:
parent
c00a054893
commit
c780bc33ba
|
@ -10,7 +10,6 @@
|
|||
{% block customhead %}
|
||||
{{ super() }}
|
||||
{{ render_bundle('activity') }}
|
||||
{% stylesheet 'activity' %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
{
|
||||
"activity": "./static/third/sorttable/sorttable.js",
|
||||
"activity": [
|
||||
"./static/third/sorttable/sorttable.js",
|
||||
"./static/styles/activity.scss"
|
||||
],
|
||||
"portico": [
|
||||
"./static/js/portico/header.js",
|
||||
"./static/styles/portico-styles.scss"
|
||||
|
|
|
@ -860,13 +860,6 @@ PIPELINE = {
|
|||
'STYLESHEETS': {
|
||||
# If you add a style here, please update stylesheets()
|
||||
# in frontend_tests/zjsunit/output.js as needed.
|
||||
'activity': {
|
||||
'source_filenames': (
|
||||
'styles/activity.css',
|
||||
'third/thirdparty-fonts.css',
|
||||
),
|
||||
'output_filename': 'min/activity.css'
|
||||
},
|
||||
'stats': {
|
||||
'source_filenames': ('styles/stats.css',),
|
||||
'output_filename': 'min/stats.css'
|
||||
|
|
Loading…
Reference in New Issue