Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename grid.css to chart.css #24529

Merged
merged 1 commit into from
Jun 17, 2022
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
File renamed without changes.
2 changes: 1 addition & 1 deletion airflow/www/templates/airflow/chart.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

{% block head_css %}
{{ super() }}
<link rel="stylesheet" type="text/css" href="{{ url_for_asset('grid.css') }}">
<link rel="stylesheet" type="text/css" href="{{ url_for_asset('chart.css') }}">
<link rel="stylesheet" type="text/css" href="{{ url_for_asset('nv.d3.min.css') }}">
<script src="{{ url_for_asset('d3.min.js') }}"></script>
<script src="{{ url_for_asset('nv.d3.min.js') }}"></script>
Expand Down
2 changes: 1 addition & 1 deletion airflow/www/templates/airflow/duration_chart.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

{% block head_css %}
{{ super() }}
<link rel="stylesheet" type="text/css" href="{{ url_for_asset('grid.css') }}">
<link rel="stylesheet" type="text/css" href="{{ url_for_asset('chart.css') }}">
<link rel="stylesheet" type="text/css" href="{{ url_for_asset('nv.d3.min.css') }}">
<script src="{{ url_for_asset('d3.min.js') }}"></script>
<script src="{{ url_for_asset('nv.d3.min.js') }}"></script>
Expand Down
2 changes: 1 addition & 1 deletion airflow/www/templates/airflow/gantt.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
{% block head_css %}
{{ super() }}
<link rel="stylesheet" type="text/css" href="{{ url_for_asset('gantt.css') }}">
<link rel="stylesheet" type="text/css" href="{{ url_for_asset('grid.css') }}">
<link rel="stylesheet" type="text/css" href="{{ url_for_asset('chart.css') }}">
<style type="text/css">
{% for state, state_color in state_color_mapping.items() %}
rect.{{state}} {
Expand Down
3 changes: 2 additions & 1 deletion airflow/www/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ const config = {
entry: {
airflowDefaultTheme: `${CSS_DIR}/bootstrap-theme.css`,
connectionForm: `${JS_DIR}/connection_form.js`,
chart: [`${CSS_DIR}/chart.css`],
dag: `${JS_DIR}/dag.js`,
dagCode: `${JS_DIR}/dag_code.js`,
dagDependencies: `${JS_DIR}/dag_dependencies.js`,
Expand All @@ -72,7 +73,7 @@ const config = {
task: `${JS_DIR}/task.js`,
taskInstances: `${JS_DIR}/task_instances.js`,
tiLog: `${JS_DIR}/ti_log.js`,
grid: [`${CSS_DIR}/grid.css`, `${JS_DIR}/grid/index.jsx`],
grid: [`${JS_DIR}/grid/index.jsx`],
calendar: [`${CSS_DIR}/calendar.css`, `${JS_DIR}/calendar.js`],
durationChart: `${JS_DIR}/duration_chart.js`,
trigger: `${JS_DIR}/trigger.js`,
Expand Down