Skip to content
This repository has been archived by the owner on May 24, 2021. It is now read-only.

Commit

Permalink
fix(transcripts-header): Fix follow button height in Safari
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-heimbuch committed Jan 28, 2018
1 parent 2552808 commit 9341fdc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/player/progress-bar/Progress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
@input="onInput"
>
<span class="progress-range" :style="rangeStyle"></span>
<span class="progress-buffer" v-for="(buffering, index) in buffer" :style="bufferStyle(buffering)" :key="index"></span>
<span v-for="(quantile, index) in quantiles" class="progress-track" :style="trackStyle(quantile)" :key="index"></span>
<span class="progress-buffer" v-for="(buffering, index) in buffer" :style="bufferStyle(buffering)" :key="`buffer-${index}`"></span>
<span v-for="(quantile, index) in quantiles" class="progress-track" :style="trackStyle(quantile)" :key="`track-${index}`"></span>
<ChaptersIndicator></ChaptersIndicator>
<span class="ghost-thumb" :style="thumbStyle(ghostPosition, ghost.active)"></span>
<span class="progress-thumb" :class="{ active: thumbActive }" :style="thumbStyle(thumbPosition, true)"></span>
Expand Down
2 changes: 1 addition & 1 deletion src/styles/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@ $thumb-width-mobile: 44px;

// Transcripts
$transcripts-header-height: 50px;
$transcripts-header-element-height: 24px;
$transcripts-header-element-height: 25px;
$transcripts-search-navigation-width: 120px;

0 comments on commit 9341fdc

Please sign in to comment.