Merge pull request #38764 from sokumon/remove-icon-close
fix: replace icon-close with icon-x
This commit is contained in:
commit
e516f716bf
4 changed files with 4 additions and 4 deletions
|
|
@ -504,7 +504,7 @@ frappe.ui.form.on("Number Card", {
|
||||||
<td class="text-center">
|
<td class="text-center">
|
||||||
<a class="remove-filter text-muted" style="cursor: pointer;">
|
<a class="remove-filter text-muted" style="cursor: pointer;">
|
||||||
<svg class="icon icon-sm">
|
<svg class="icon icon-sm">
|
||||||
<use href="#icon-close" class="close"></use>
|
<use href="#icon-x" class="close"></use>
|
||||||
</svg>
|
</svg>
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@
|
||||||
<div class="groupby-actions pull-left col-sm-1 hidden-xs">
|
<div class="groupby-actions pull-left col-sm-1 hidden-xs">
|
||||||
<span class="remove-group-by">
|
<span class="remove-group-by">
|
||||||
<svg class="icon icon-sm">
|
<svg class="icon icon-sm">
|
||||||
<use href="#icon-close"></use>
|
<use href="#icon-x"></use>
|
||||||
</svg>
|
</svg>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
/>
|
/>
|
||||||
<button class="ml-2 btn btn-xs btn-icon" @click="remove_column(column)">
|
<button class="ml-2 btn btn-xs btn-icon" @click="remove_column(column)">
|
||||||
<svg class="icon icon-sm">
|
<svg class="icon icon-sm">
|
||||||
<use href="#icon-close"></use>
|
<use href="#icon-x"></use>
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
</button>
|
</button>
|
||||||
<button class="btn btn-xs btn-icon" @click="df['remove'] = true">
|
<button class="btn btn-xs btn-icon" @click="df['remove'] = true">
|
||||||
<svg class="icon icon-sm">
|
<svg class="icon icon-sm">
|
||||||
<use href="#icon-close"></use>
|
<use href="#icon-x"></use>
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue