2022-03-22 14:09:54 +01:00
|
|
|
<div>
|
|
|
|
<style>
|
|
|
|
input[name=search]{
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0.375rem 0.75rem;
|
|
|
|
color: #495057;
|
|
|
|
background-color: #fff;
|
|
|
|
background-clip: padding-box;
|
|
|
|
border: 1px solid #ced4da;
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
|
|
|
|
}
|
|
|
|
input:focus{
|
|
|
|
border-color: #80bdff;
|
|
|
|
outline: 0;
|
|
|
|
box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
|
|
|
|
}
|
|
|
|
ul.process_list{
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 0;
|
|
|
|
color: #495057;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: .25rem;
|
2022-03-23 16:27:11 +01:00
|
|
|
user-select: none;
|
2022-03-22 14:09:54 +01:00
|
|
|
}
|
|
|
|
li.process_list_item{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-03-23 16:27:11 +01:00
|
|
|
gap: 0.25rem;
|
|
|
|
cursor: pointer;
|
|
|
|
border: solid 1px rgba(0,0,0,.3);
|
|
|
|
padding: 0.3rem;
|
|
|
|
border-radius: 0.3rem;
|
|
|
|
box-shadow: #333333 1px 1px 4px;
|
|
|
|
background: #eeeeee;
|
|
|
|
transition: background .3s;
|
|
|
|
}
|
|
|
|
li.process_list_item:hover{
|
|
|
|
background: #ffffff;
|
2022-03-22 14:09:54 +01:00
|
|
|
}
|
|
|
|
ul.keyword_list{
|
|
|
|
list-style: none;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap:2px;
|
|
|
|
padding-left: 0;
|
2022-03-23 16:27:11 +01:00
|
|
|
font-size: x-small;
|
|
|
|
font-weight: 300;
|
2022-03-22 14:09:54 +01:00
|
|
|
}
|
|
|
|
li.keyword_list_item{
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0.25em 0.4em;
|
|
|
|
line-height: 1;
|
|
|
|
text-align: center;
|
|
|
|
white-space: nowrap;
|
|
|
|
vertical-align: baseline;
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
background-color: #eeffff;
|
|
|
|
color: #0099CC;
|
|
|
|
border: solid 1px #0099CC;
|
|
|
|
}
|
2022-03-23 16:27:11 +01:00
|
|
|
.process_list_item_header{
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2022-03-22 14:09:54 +01:00
|
|
|
</style>
|
|
|
|
<template id="PROCESS_LIST_TEMPLATE">
|
|
|
|
<ul class="process_list" name="process_list">
|
2022-03-25 15:39:39 +01:00
|
|
|
<li class="process_list_item" draggable="true">
|
2022-03-23 16:27:11 +01:00
|
|
|
<h4 class="process_list_item_header"></h4>
|
2022-03-25 15:39:39 +01:00
|
|
|
<ul name="keywords" class="keyword_list">
|
2022-03-23 16:27:11 +01:00
|
|
|
<li class="keyword_list_item"></li>
|
|
|
|
</ul>
|
2022-03-22 14:09:54 +01:00
|
|
|
<i></i>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</template>
|
|
|
|
<div>
|
|
|
|
<input name="search" type="text"/>
|
|
|
|
<ul name="process_list"></ul>
|
|
|
|
</div>
|
2022-03-23 16:27:11 +01:00
|
|
|
</div>
|