@@ -2636,7 +2636,7 @@ TABS.osd.initialize = function(callback) {
26362636 timerTableRow . append ( `<td>${ tim . index + 1 } </td>` ) ;
26372637
26382638 // Source
2639- const sourceTimerTableData = $ ( '<td class="osd_tip"></td>' ) ;
2639+ const sourceTimerTableData = $ ( '<td class="timer-detail osd_tip"></td>' ) ;
26402640 sourceTimerTableData . attr ( 'title' , i18n . getMessage ( 'osdTimerSourceTooltip' ) ) ;
26412641 sourceTimerTableData . append ( `<label for="timerSource_${ tim . index } " class="char-label">${ i18n . getMessage ( 'osdTimerSource' ) } </label>` ) ;
26422642 const src = $ ( `<select class="timer-option" id="timerSource_${ tim . index } "></select>` ) ;
@@ -2659,7 +2659,7 @@ TABS.osd.initialize = function(callback) {
26592659 // Precision
26602660 timerTableRow = $ ( '<tr />' ) ;
26612661 timerTable . append ( timerTableRow ) ;
2662- const precisionTimerTableData = $ ( '<td class="osd_tip"></td>' ) ;
2662+ const precisionTimerTableData = $ ( '<td class="timer-detail osd_tip"></td>' ) ;
26632663 precisionTimerTableData . attr ( 'title' , i18n . getMessage ( 'osdTimerPrecisionTooltip' ) ) ;
26642664 precisionTimerTableData . append ( `<label for="timerPrec_${ tim . index } " class="char-label">${ i18n . getMessage ( 'osdTimerPrecision' ) } </label>` ) ;
26652665 const precision = $ ( `<select class="timer-option osd_tip" id="timerPrec_${ tim . index } "></select>` ) ;
@@ -2683,7 +2683,7 @@ TABS.osd.initialize = function(callback) {
26832683 // Alarm
26842684 timerTableRow = $ ( '<tr />' ) ;
26852685 timerTable . append ( timerTableRow ) ;
2686- const alarmTimerTableData = $ ( '<td class="osd_tip"></td>' ) ;
2686+ const alarmTimerTableData = $ ( '<td class="timer-detail osd_tip"></td>' ) ;
26872687 alarmTimerTableData . attr ( 'title' , i18n . getMessage ( 'osdTimerAlarmTooltip' ) ) ;
26882688 alarmTimerTableData . append ( `<label for="timerAlarm_${ tim . index } " class="char-label">${ i18n . getMessage ( 'osdTimerAlarm' ) } </label>` ) ;
26892689 const alarm = $ ( `<input class="timer-option osd_tip" name="alarm" type="number" min=0 id="timerAlarm_${ tim . index } "/>` ) ;
0 commit comments