Commit 0fb56dec authored by Xavier's avatar Xavier
Browse files

Issue #2413277: Cleaned up time_tracker_timer module

parent 9e94cd3e
Loading
Loading
Loading
Loading
+13 −20
Original line number Diff line number Diff line
@@ -93,23 +93,23 @@ td.timer_control.stopped_timer_control input.form-timer_control_resume {
}

input.form-timer_control_start {
  background: url("../../css/images/start_timer_button.png") no-repeat 0 0;
  background: url("../images/start_timer_button.png") no-repeat 0 0;
}

input.form-timer_control_stop {
  background: url("../../css/images/stop_timer_button.png") no-repeat 0 0;
  background: url("../images/stop_timer_button.png") no-repeat 0 0;
}

input.form-timer_control_reset {
  background: url("../../css/images/reset_timer_button.png") no-repeat 0 0;
  background: url("../images/reset_timer_button.png") no-repeat 0 0;
}

input.form-timer_control_reset_only {
  background: url("../../css/images/reset_timer_button_full.png") no-repeat 0 0;
  background: url("../images/reset_timer_button_full.png") no-repeat 0 0;
}

input.form-timer_control_resume {
  background: url("../../css/images/resume_timer_button.png") no-repeat 0 0;
  background: url("../images/resume_timer_button.png") no-repeat 0 0;
}

td.new_timer_time {
@@ -201,10 +201,3 @@ td.timer_block_msg a {
.time_entry_disabled.with_deductions {
  margin: 4px 10px 10px 10px;
}






Loading