Skip to content

Commit

Permalink
Merge pull request #556 from jon-myers/fixing-firefox
Browse files Browse the repository at this point in the history
Fixing firefox
  • Loading branch information
jon-myers authored Jan 21, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents cafcc06 + cf8cdce commit 3461912
Showing 2 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 deletions src/comps/editor/Renderer.vue
Original file line number Diff line number Diff line change
@@ -811,6 +811,7 @@ export default defineComponent({
scrollbar-width: auto;
scroll-behavior: auto;
outline: none;
overflow: scroll;
}
.scrollingContainer::-webkit-scrollbar {
@@ -843,11 +844,12 @@ export default defineComponent({
.xAxisContainer {
position: sticky;
top: 0;
left: var(--yAxWidth);
/* left: var(--yAxWidth); */
width: calc(100% - var(--yAxWidth) - var(--scrollBarWidth));
height: var(--xAxHeight);
overflow-x: scroll;
overflow-x: hidden;
overflow-y: hidden;
margin-left: var(--yAxWidth);
}
.verticalZoomControls {
@@ -920,7 +922,7 @@ export default defineComponent({
top: var(--xAxHeight);
width: var(--yAxWidth);
height: calc(100% - var(--xAxHeight) - var(--scrollBarHeight));
overflow-y: scroll;
overflow-y: hidden;
}
.yAxisContainer::-webkit-scrollbar {
6 changes: 3 additions & 3 deletions src/comps/editor/renderer/TranscriptionLayer.vue
Original file line number Diff line number Diff line change
@@ -30,8 +30,8 @@
:closed='contextMenuClosed'
:choices='contextMenuChoices'
/>
<div class='timeModalOuter'>
<div v-if="goToTimeModal" class="time-entry-modal">
<div class='timeModalOuter'v-if="goToTimeModal">
<div class="time-entry-modal">
<div class="time-entry-container">
<input type="text" v-model="goToHours" placeholder="HH" class="time-entry-input" />
<span>:</span>
@@ -5681,7 +5681,7 @@ export default defineComponent({
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
/* background-color: rgba(0, 0, 0, 0.5); */
z-index: 100;
}

0 comments on commit 3461912

Please sign in to comment.