Skip to content

Commit a2e21c5

Browse files
Fixing path for stylesheets
Co-authored-by: Dimitris Papagiannis <[email protected]>
1 parent 4942915 commit a2e21c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Utilities/RelMon/python/directories2html.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ def get_page_header(directory=None, standalone=False, additional_header=""):
120120
'<head>'+\
121121
'<title>RelMon Summary</title>'+\
122122
'<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js"></script>' + \
123-
'<link rel="stylesheet" href="%s/style/blueprint/screen.css" type="text/css" media="screen, projection">'%style_location+\
124-
'<link rel="stylesheet" href="%s/style/blueprint/print.css" type="text/css" media="print">'%style_location+\
125-
'<link rel="stylesheet" href="%s/style/blueprint/plugins/fancy-type/screen.css" type="text/css" media="screen, projection">'%style_location+\
123+
'<link rel="stylesheet" href="%s/screen.css" type="text/css" media="screen, projection">'%style_location+\
124+
'<link rel="stylesheet" href="%s/print.css" type="text/css" media="print">'%style_location+\
125+
'<link rel="stylesheet" href="%s/fancy-type-screen.css" type="text/css" media="screen, projection">'%style_location+\
126126
'<style type="text/css">'+\
127127
'.rotation {display: block;-webkit-transform: rotate(-90deg);-moz-transform: rotate(-90deg); }'+\
128128
'%s'%style+\

0 commit comments

Comments
 (0)