Change link to be green to start and red to stop

This commit is contained in:
2026-03-19 22:33:53 -04:00
parent 527f72f93b
commit 490fbd476d

View File

@@ -1,3 +1,26 @@
tr.time-entry.running td.hours { tr.time-entry.running td.hours {
color: red; color: red;
} }
a.stopwatch_issue_timer[href*="stop"] {
color: red;
}
a.stopwatch_issue_timer[href*="start"] {
color: limegreen;
}
/* Mobile only */
@media (max-width: 899px) {
a.stopwatch_issue_timer[href*="stop"] {
color: red;
background-color: #ffe5e5;
border: 1px solid red;
}
a.stopwatch_issue_timer[href*="start"] {
color: limegreen;
background-color: #eaffea;
border: 1px solid limegreen;
}
}