-
Notifications
You must be signed in to change notification settings - Fork 16
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
Support for musical sources #53
Merged
MarcMoschSLUB
merged 17 commits into
slub:master
from
effective-webwork:verovio-neu-measure-navigation
Jul 29, 2024
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
c632265
Stylings for Verovio
a7c94f4
Verovio Integration
adeba52
add midi player button
hizclick f2a1fbe
Commented out the midi player for now
roewenstrunk 5926b38
add midiplayer div contents
hizclick c4e2d9f
Added cross page navigation for measures.
haogatyp 4301511
Stylings for Verovio
97431e1
Verovio Integration
0640d93
add midi player button
hizclick 7df0976
Commented out the midi player for now
roewenstrunk 3117c75
add midiplayer div contents
hizclick c3f73d9
Added cross page navigation for measures.
haogatyp bdc65ae
Change scoretool condition because of changes in dlf
chrizzor 6afdc60
Merge branch 'verovio-neu-measure-navigation' of github.com:effective…
chrizzor 3223512
Merge branch 'origin_master' into verovio-neu-measure-navigation
chrizzor 1dbe6a2
Update Resources/Private/Plugins/Kitodo/Templates/Toolbox/Main.html
chrizzor 98a7a94
Remove html comment
chrizzor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* | ||
* Score | ||
* ================================================ | ||
* Specials for the score view | ||
* | ||
* Author: Matthias Richter <[email protected]> | ||
* | ||
*/ | ||
|
||
.fulltext-container { | ||
position: absolute; | ||
top: 55px; | ||
right: 0; | ||
bottom: 0; | ||
background: rgba(255, 255, 255, 0.95); | ||
text-align: left; | ||
.transition(); | ||
#tx-dlf-score, { | ||
position: relative; | ||
top: 0; | ||
right: 0; | ||
width: 100%; | ||
height: 100%; | ||
padding: 60px 20px 60px 0px; | ||
overflow: hidden; | ||
overflow-y: auto; | ||
-webkit-overflow-scrolling: touch; | ||
line-height: 1.6em; | ||
font-size: 16px; | ||
color: @basegrey-color; | ||
display: none; | ||
&:empty { | ||
padding: 0; | ||
} | ||
.textline { | ||
&:after { | ||
content: " "; | ||
} | ||
} | ||
.score-visible & { | ||
display: block; | ||
} | ||
} | ||
.fullscreen & { | ||
top: 0; | ||
} | ||
@media screen and (min-width: @tabletViewportWidth) { | ||
#tx-dlf-score { | ||
padding: 60px 70px 60px 0px; | ||
} | ||
} | ||
@media screen and (min-width: @tabletLandscapeViewportWidth) { | ||
top: 0; | ||
max-width: 71.7%; | ||
&:before { | ||
height: 100px; | ||
} | ||
&:after { | ||
height: 80px; | ||
} | ||
#tx-dlf-score { | ||
padding: 80px 100px 60px 30px; | ||
line-height: 1.8; | ||
border-left: 1px solid @secondary-color-light; | ||
.highlight { | ||
padding: 3px 0; | ||
background: lighten(@secondary-color-light,30%); | ||
} | ||
} | ||
} | ||
@media screen and (min-width: @desktopViewportWidth) { | ||
max-width: 50%; | ||
} | ||
} | ||
|
||
// EOF |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question: how this functionality can be tested? Could you add some description and maybe some screenshot?