Skip to content

Commit

Permalink
fix font paths #145
Browse files Browse the repository at this point in the history
  • Loading branch information
peterstadler committed Jun 15, 2023
1 parent e0251fb commit b233208
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 28 deletions.
18 changes: 9 additions & 9 deletions style/mei_to_html.css
Original file line number Diff line number Diff line change
Expand Up @@ -379,22 +379,22 @@ div.MEI_score {
/* Unicode music symbols font */
@font-face {
font-family: 'Bravura Text';
src: url('/editor/style/fonts/BravuraText.eot');
src: url('/resources/css/fonts/BravuraText.eot');
src: local('Bravura Text'),
url('/editor/style/fonts/BravuraText.eot?#iefix') format('embedded-opentype'),
url('/editor/style/fonts/BravuraText.woff') format('woff'),
url('/editor/style/fonts/BravuraText.svg#BravuraText') format('svg');
url('/resources/css/fonts/BravuraText.eot?#iefix') format('embedded-opentype'),
url('/resources/css/fonts/BravuraText.woff') format('woff'),
url('/resources/css/fonts/BravuraText.svg#BravuraText') format('svg');
}

/* Runic font */
@font-face {
font-family: 'Hnias';
src: url('/editor/style/fonts/Hnias.eot');
src: url('/resources/css/fonts/Hnias.eot');
src: local('Hnias Regular'), local('Hnias'),
url('/editor/style/fonts/Hnias.eot?#iefix') format('embedded-opentype'),
url('/editor/style/fonts/Hnias.ttf') format('truetype'),
url('/editor/style/fonts/Hnias.woff') format('woff'),
url('/editor/style/fonts/Hnias.svg#Hnias') format('svg');
url('/resources/css/fonts/Hnias.eot?#iefix') format('embedded-opentype'),
url('/resources/css/fonts/Hnias.ttf') format('truetype'),
url('/resources/css/fonts/Hnias.woff') format('woff'),
url('/resources/css/fonts/Hnias.svg#Hnias') format('svg');
}
/* End embedded fonts */

Expand Down
20 changes: 10 additions & 10 deletions style/mei_to_html_print.css
Original file line number Diff line number Diff line change
Expand Up @@ -268,22 +268,22 @@ table.source_component_list td.label_cell {
/* Unicode music symbols font */
@font-face {
font-family: 'Bravura Text';
src: url('/editor/style/fonts/BravuraText.eot');
src: url('/resources/css/fonts/BravuraText.eot');
src: local('Bravura Text'),
url('/editor/style/fonts/BravuraText.eot?#iefix') format('embedded-opentype'),
url('/editor/style/fonts/BravuraText.woff') format('woff'),
url('/editor/style/fonts/BravuraText.svg#BravuraText') format('svg');
url('/resources/css/fonts/BravuraText.eot?#iefix') format('embedded-opentype'),
url('/resources/css/fonts/BravuraText.woff') format('woff'),
url('/resources/css/fonts/BravuraText.svg#BravuraText') format('svg');
}

/* Runic font */
@font-face {
font-family: 'Hnias';
src: url('/editor/style/fonts/Hnias.eot');
src: local('/editor/style/Hnias Regular'), local('Hnias'),
url('/editor/style/fonts/Hnias.eot?#iefix') format('embedded-opentype'),
url('/editor/style/fonts/Hnias.ttf') format('truetype'),
url('/editor/style/fonts/Hnias.woff') format('woff'),
url('/editor/style/fonts/Hnias.svg#Hnias') format('svg');
src: url('/resources/css/fonts/Hnias.eot');
src: local('Hnias Regular'), local('Hnias'),
url('/resources/css/fonts/Hnias.eot?#iefix') format('embedded-opentype'),
url('/resources/css/fonts/Hnias.ttf') format('truetype'),
url('/resources/css/fonts/Hnias.woff') format('woff'),
url('/resources/css/fonts/Hnias.svg#Hnias') format('svg');
}
/* End embedded fonts */

Expand Down
18 changes: 9 additions & 9 deletions style/mei_to_html_public.css
Original file line number Diff line number Diff line change
Expand Up @@ -335,22 +335,22 @@ table.source_component_list td.label_cell {
/* Unicode music symbols font */
@font-face {
font-family: 'Bravura Text';
src: url('/editor/style/fonts/BravuraText.eot');
src: url('/resources/css/fonts/BravuraText.eot');
src: local('Bravura Text'),
url('/editor/style/fonts/BravuraText.eot?#iefix') format('embedded-opentype'),
url('/editor/style/fonts/BravuraText.woff') format('woff'),
url('/editor/style/fonts/BravuraText.svg#BravuraText') format('svg');
url('/resources/css/fonts/BravuraText.eot?#iefix') format('embedded-opentype'),
url('/resources/css/fonts/BravuraText.woff') format('woff'),
url('/resources/css/fonts/BravuraText.svg#BravuraText') format('svg');
}

/* Runic font */
@font-face {
font-family: 'Hnias';
src: url('/editor/style/fonts/Hnias.eot');
src: url('/resources/css/fonts/Hnias.eot');
src: local('Hnias Regular'), local('Hnias'),
url('/editor/style/fonts/Hnias.eot?#iefix') format('embedded-opentype'),
url('/editor/style/fonts/Hnias.ttf') format('truetype'),
url('/editor/style/fonts/Hnias.woff') format('woff'),
url('/editor/style/fonts/Hnias.svg#Hnias') format('svg');
url('/resources/css/fonts/Hnias.eot?#iefix') format('embedded-opentype'),
url('/resources/css/fonts/Hnias.ttf') format('truetype'),
url('/resources/css/fonts/Hnias.woff') format('woff'),
url('/resources/css/fonts/Hnias.svg#Hnias') format('svg');
}
/* End embedded fonts */

Expand Down

0 comments on commit b233208

Please sign in to comment.