fix(ListView): hide indicator on listview

This commit is contained in:
Ejaaz Khan 2026-04-24 13:01:31 +05:30
parent 8054844193
commit d68a814e02
2 changed files with 5 additions and 2 deletions

View file

@ -13,7 +13,7 @@
</svg>
</span>
</button>
<div class="flex fill-width title-area ellipsis">
<div class="flex title-area ellipsis">
<ul class="nav d-sm-flex navbar-breadcrumbs ellipsis {{frappe.is_mobile() ? "mobile-no-divider" : ""}} "></ul>
<button class="btn btn-default more-button hide">
<svg class="icon icon-sm">
@ -21,7 +21,7 @@
</use>
</svg>
</button>
<span class="indicator-pill whitespace-nowrap"></span>
<span class="indicator-pill whitespace-nowrap page-indicator-pill"></span>
</div>
</div>
<div class="align-center flex standard-items-section">

View file

@ -698,4 +698,7 @@ input.list-header-checkbox {
}
}
}
.page-indicator-pill {
display: none;
}
}