feat(core): Add ticket status icon

ref: #250 #252 #96 #93 #95 #90 #115
This commit is contained in:
2024-09-01 13:49:36 +09:30
parent 058e057088
commit 7829f4b7d8
7 changed files with 77 additions and 16 deletions

View File

@ -234,20 +234,6 @@
line-height: 30px;
}
#rendered-ticket-link #icon {
display: inline-block;
line-height: 30px;
margin: 0px;
vertical-align: middle;
}
#rendered-ticket-link #icon svg {
height: 20px;
margin: 0px;
margin: 0px;
line-height: inherit;
}
#rendered-ticket-link #text{
display: inline-block;
height: 20px;
@ -255,6 +241,64 @@
font-size: inherit;
}
#icon.ticket-status {
display: inline-block;
width: 20px;
height: 20px;
line-height: 30px;
margin: 0px;
vertical-align: middle;
}
#rendered-ticket-link #icon.ticket-status svg {
width: 20px;
height: 20px;
margin: 0px;
line-height: inherit;
}
#icon.ticket-status-assigned svg {
background-color: #e1ffb2;
border: none;
border-radius: 10px;
fill: #2e9200;
}
#icon.ticket-status-draft svg {
background-color: #cacaca;
border: none;
border-radius: 10px;
fill: #4d4d4d;
}
#icon.ticket-status-new svg {
background-color: #b2dcff;
border: none;
border-radius: 10px;
fill: #004492;
}
#icon.ticket-status-pending svg {
background-color: #ffceb2;
border: none;
border-radius: 10px;
fill: #d86100;
}
#icon.ticket-status-solved svg {
background-color: #c9b2ff;
border: none;
border-radius: 10px;
fill: #640092;
}
#icon.ticket-status-closed svg {
background-color: #c9b2ff;
border: none;
border-radius: 10px;
fill: #640092;
}
#ticket-comments #comment {
border: 1px solid #177ee6;