File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -162,3 +162,7 @@ $custom-control-indicator-checked-bg: $grey-blue;
162162 color : $white !important ;
163163 border : 1px solid $black ;
164164}
165+
166+ // Fix for bootstrap-vue issue with tooltips:
167+ // https://github.com/bootstrap-vue/bootstrap-vue/issues/1732
168+ .tooltip { top : 0 ; }
Original file line number Diff line number Diff line change 1818
1919 <span class =" nav-spacer" ></span >
2020
21- <span v-b-tooltip :title =" $t('programming.start')" style =" display : inline-block ;" >
21+ <span v-b-tooltip.hover :title =" $t('programming.start')" style =" display : inline-block ;" >
2222 <button :disabled =" !isPlayEnabled" class =" btn btn-outline-light mx-2"
2323 @click =" control('play')" >
2424 <i class =" fas fa-play" ></i >
2525 </button >
2626 </span >
2727
2828<!--
29- <span v-b-tooltip :title="$t('programming.pause')" style="display: inline-block;">
29+ <span v-b-tooltip.hover :title="$t('programming.pause')" style="display: inline-block;">
3030 <button :disabled="isPauseDisabled"
3131 @click="control('pause')" class="btn btn-outline-light mr-2">
3232 <i class="fa fa-pause"></i>
3333 </button>
3434 </span>
3535
36- <span v-b-tooltip :title="$t('programming.step')" style="display: inline-block;">
36+ <span v-b-tooltip.hover :title="$t('programming.step')" style="display: inline-block;">
3737 <button :disabled="isStepDisabled" class="btn btn-outline-light mr-2"
3838 @click="control('step')">
3939 <i class="fa fa-step-forward"></i>
4040 </button>
4141 </span>
4242-->
43- <span v-b-tooltip :title =" $t('programming.stop')" style =" display : inline-block ;" >
43+ <span v-b-tooltip.hover :title =" $t('programming.stop')" style =" display : inline-block ;" >
4444 <button :disabled =" !isStopEnabled" class =" btn btn-outline-light mr-2"
4545 @click =" control('stop')" >
4646 <i class =" fa fa-stop" ></i >
You can’t perform that action at this time.
0 commit comments