/* Minimal Redmine theme overlay: keep the stock UI and only tint issue rows by priority. */
@import url("/assets/application-6dc0ec44.css");

table.list.issues tr.issue {
  transition: background-color 120ms ease-in, border-color 120ms ease-in;
}

table.list.issues tr.issue.priority-lowest,
table.list.issues tbody tr.issue.priority-lowest:hover,
table.list.issues tr.issue.priority-low1,
table.list.issues tbody tr.issue.priority-low1:hover,
table.list.issues tr.issue.priority-low2,
table.list.issues tbody tr.issue.priority-low2:hover,
table.list.issues tr.issue.priority-default,
table.list.issues tbody tr.issue.priority-default:hover {
  background: inherit;
}

table.list.issues tr.issue.priority-high3,
table.list.issues tbody tr.issue.priority-high3:hover {
  background: #fde8e8;
}

table.list.issues tr.issue.priority-high2,
table.list.issues tbody tr.issue.priority-high2:hover {
  background: #f8caca;
  color: #c81e1e;
}

table.list.issues tr.issue.priority-highest,
table.list.issues tbody tr.issue.priority-highest:hover {
  background: #ef9a9a;
  color: #b00000;
  font-weight: 700;
}

table.list.issues tr.issue.priority-high3 td,
table.list.issues tbody tr.issue.priority-high3:hover td {
  background: #fde8e8;
  border-top-color: #efcfcf;
  border-bottom-color: #efcfcf;
}

table.list.issues tr.issue.priority-high2 td,
table.list.issues tbody tr.issue.priority-high2:hover td {
  background: #f8caca;
  border-top-color: #e4a8a8;
  border-bottom-color: #e4a8a8;
}

table.list.issues tr.issue.priority-highest td,
table.list.issues tbody tr.issue.priority-highest:hover td {
  background: #ef9a9a;
  border-top-color: #d97979;
  border-bottom-color: #d97979;
}

table.list.issues tr.issue.priority-high3 a,
table.list.issues tbody tr.issue.priority-high3:hover a {
  color: inherit;
}

table.list.issues tr.issue.priority-high2 a,
table.list.issues tbody tr.issue.priority-high2:hover a {
  color: #cf1f1f;
}

table.list.issues tr.issue.priority-highest .id a,
table.list.issues tr.issue.priority-highest .subject a,
table.list.issues tr.issue.priority-highest a,
table.list.issues tbody tr.issue.priority-highest:hover a {
  color: #b00000;
  font-weight: 700;
}
