Merge pull request #38866 from iamejaaz/small-ui-ux-fix
fix(ListView): Small UI & UX fixes related to navbar
This commit is contained in:
commit
d9d35fa4ad
2 changed files with 13 additions and 2 deletions
|
|
@ -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">
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue