Refs #2166
This commit is contained in:
Trevor Vallender 2023-12-18 11:45:10 +00:00
parent 60e0e5ede5
commit a1c0fbedca
1 changed files with 103 additions and 3 deletions

View File

@ -70,7 +70,7 @@ body {
background: var(--base3);
}
.box, div.issue, #sidebar, #history, #content .tabs ui li a.selected {
.box, div.issue, div.job, #sidebar, #history, #content .tabs ui li a.selected {
background-color: var(--base2);
}
@ -178,10 +178,110 @@ table.filecontent td.line-code pre {
#main-menu .repository::before {
content: "💻 ";
}
#main-menu .projects::before {
content: "🌱 ";
#main-menu .roadmap::before {
content: "🗺 ";
}
#main-menu .boards::before {
content: "💬 ";
}
svg.header-logo {
display: none;
}
table.list td.priority, table.list td.tracker, table.list td.status {
text-align: left;
}
table.list tr {
text-align: left;
}
tr.priority-1 td.priority::before {
content: "🔵 ";
border-radius: 1em;
}
tr.priority-2 td.priority::before {
content: "🟢 ";
}
tr.priority-3 td.priority::before {
content: "🟣 ";
}
tr.priority-4 td.priority::before {
content: "🟡 ";
}
tr.priority-5 td.priority::before {
content: "🔴 ";
}
td.status {
display: inline-block;
padding: .25em;
margin: .7em;
border-radius: .25em;
font-weight: bold;
color: var(--base2);
}
/* New */
tr.status-1 td.status {
background-color: var(--green);
}
tr.status-1 td.status::before {
content: "🌅 ";
}
/* In Progress */
tr.status-2 td.status {
background-color: var(--blue);
}
tr.status-2 td.status::before {
content: "▶ ";
}
/* Resolved */
tr.status-3 td.status {
background-color: var(--cyan);
}
tr.status-3 td.status::before {
content: "✅ ";
}
/* UAT */
tr.status-4 td.status {
background-color: var(--yellow);
}
tr.status-4 td.status::before {
content: "🔍 ";
}
/* Closed */
tr.status-5 td.status {
background-color: var(--orange);
}
tr.status-5 td.status::before {
content: " ";
}
/* Rejected */
tr.status-6 td.status {
background-color: var(--violet);
}
tr.status-6 td.status::before {
content: "❌ ";
}
/* Bug */
tr.tracker-1 td.tracker::before {
content: "🪲 ";
}
/* Feature */
tr.tracker-2 td.tracker::before {
content: "💡 ";
}
/* Support */
tr.tracker-3 td.tracker::before {
content: "🧯 ";
}
/* Theme */
tr.tracker-5 td.tracker::before {
content: "📖 ";
}
/* Maintenance */
tr.tracker-8 td.tracker::before {
content: "🛠 ";
}