Skip to content

Commit 5cdbe87

Browse files
venantvrclaude
andcommitted
feat: Link dashboard_common.css in all HTML templates
- Added <link> tag for dashboard_common.css in all service templates - Ensures generic styles are loaded before service-specific styles - Maintains proper CSS cascade order Templates updated: - event_flow.html - event_recorder.html - mock_exchange.html - recording_detail.html - scenario_testing.html 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 2877928 commit 5cdbe87

5 files changed

Lines changed: 5 additions & 0 deletions

File tree

src/python_pubsub_devtools/web/templates/event_flow.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta charset="UTF-8">
55
<meta content="width=device-width, initial-scale=1.0" name="viewport">
66
<title>Event Flow Visualization - Trading Bot</title>
7+
<link href="{{ url_for('static', filename='css/dashboard_common.css') }}" rel="stylesheet">
78
<link href="{{ url_for('static', filename='css/event_flow.css') }}" rel="stylesheet">
89
</head>
910
<body>

src/python_pubsub_devtools/web/templates/event_recorder.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta charset="UTF-8">
55
<meta content="width=device-width, initial-scale=1.0" name="viewport">
66
<title>Event Recorder Dashboard</title>
7+
<link href="{{ url_for('static', filename='css/dashboard_common.css') }}" rel="stylesheet">
78
<link href="{{ url_for('static', filename='css/event_recorder.css') }}" rel="stylesheet">
89
</head>
910
<body>

src/python_pubsub_devtools/web/templates/mock_exchange.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta charset="UTF-8">
55
<meta content="width=device-width, initial-scale=1.0" name="viewport">
66
<title>🎰 Mock Exchange Dashboard</title>
7+
<link href="{{ url_for('static', filename='css/dashboard_common.css') }}" rel="stylesheet">
78
<link href="{{ url_for('static', filename='css/mock_exchange.css') }}" rel="stylesheet">
89
<script src="https://unpkg.com/lightweight-charts@4.1.1/dist/lightweight-charts.standalone.production.js"></script>
910
</head>

src/python_pubsub_devtools/web/templates/recording_detail.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta charset="UTF-8">
55
<meta content="width=device-width, initial-scale=1.0" name="viewport">
66
<title>{{ recording.session_name }} - Event Recorder</title>
7+
<link href="{{ url_for('static', filename='css/dashboard_common.css') }}" rel="stylesheet">
78
<link href="{{ url_for('static', filename='css/recording_detail.css') }}" rel="stylesheet">
89
</head>
910
<body>

src/python_pubsub_devtools/web/templates/scenario_testing.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta charset="UTF-8">
55
<meta content="width=device-width, initial-scale=1.0" name="viewport">
66
<title>Scenario Testing Dashboard</title>
7+
<link href="{{ url_for('static', filename='css/dashboard_common.css') }}" rel="stylesheet">
78
<link href="{{ url_for('static', filename='css/scenario_testing.css') }}" rel="stylesheet">
89
</head>
910
<body>

0 commit comments

Comments
 (0)