Oops, add back missing CSS on mmf deleter.
This commit is contained in:
		
							parent
							
								
									06599df80b
								
							
						
					
					
						commit
						20462f1085
					
				
					 1 changed files with 3 additions and 2 deletions
				
			
		|  | @ -163,7 +163,7 @@ form | ||||||
|                 {% for tagname in search_kwargs[key] %} |                 {% for tagname in search_kwargs[key] %} | ||||||
|                 <li class="search_builder_{{tagtype}}_inputted"> |                 <li class="search_builder_{{tagtype}}_inputted"> | ||||||
|                     <span class="tag_object">{{tagname}}</span><!-- |                     <span class="tag_object">{{tagname}}</span><!-- | ||||||
|                     --><button class="remove_tag_button" |                     --><button class="remove_tag_button red_button" | ||||||
|                     onclick="remove_searchtag(this, '{{tagname}}', inputted_{{tagtype}});"></button> |                     onclick="remove_searchtag(this, '{{tagname}}', inputted_{{tagtype}});"></button> | ||||||
|                 </li> |                 </li> | ||||||
|                 {% endfor %} |                 {% endfor %} | ||||||
|  | @ -351,7 +351,8 @@ function add_searchtag(box, value, inputted_list, li_class) | ||||||
|         new_span.innerHTML = value; |         new_span.innerHTML = value; | ||||||
| 
 | 
 | ||||||
|         var new_delbutton = document.createElement("button") |         var new_delbutton = document.createElement("button") | ||||||
|         new_delbutton.className = "remove_tag_button"; |         new_delbutton.classList.add("remove_tag_button"); | ||||||
|  |         new_delbutton.classList.add("red_button"); | ||||||
|         new_delbutton.onclick = function(){remove_searchtag(new_delbutton, value, inputted_list)}; |         new_delbutton.onclick = function(){remove_searchtag(new_delbutton, value, inputted_list)}; | ||||||
| 
 | 
 | ||||||
|         new_li.appendChild(new_span); |         new_li.appendChild(new_span); | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue