Merge pull request #38866 from iamejaaz/small-ui-ux-fix

fix(ListView): Small UI & UX fixes related to navbar
This commit is contained in:
Ejaaz Khan 2026-04-24 15:47:24 +05:30 committed by GitHub
commit d9d35fa4ad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 2 deletions

View file

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

View file

@ -698,4 +698,15 @@ input.list-header-checkbox {
} }
} }
} }
.page-indicator-pill {
display: none;
}
}
@media screen and (max-width: 375px) {
.navbar-breadcrumbs li:last-child > a {
max-width: 105px;
overflow: hidden;
text-overflow: ellipsis;
}
} }