mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-04 04:39:11 +00:00
fix: Font size, empty image styles, and minor cleanup
- some frappe css font variables weren't loading, remove dependency - fixed fallback display for missing images in views - py code cleanup (minor)
This commit is contained in:
@@ -52,11 +52,11 @@
|
||||
<div class="row mt-2">
|
||||
<div class="col-3">
|
||||
{% if cart_settings.enable_checkout %}
|
||||
<a class="btn btn-outline-primary" href="/orders">
|
||||
<a class="btn btn-outline-primary font-md" href="/orders">
|
||||
{{ _('Past Orders') }}
|
||||
</a>
|
||||
{% else %}
|
||||
<a class="btn btn-outline-primary" href="/quotations">
|
||||
<a class="btn btn-outline-primary font-md" href="/quotations">
|
||||
{{ _('See past quotations') }}
|
||||
</a>
|
||||
{% endif %}
|
||||
@@ -64,15 +64,15 @@
|
||||
<div class="col-9">
|
||||
{% if doc.items %}
|
||||
<div class="place-order-container">
|
||||
<a class="btn btn-primary-light mr-2" href="/all-products">
|
||||
<a class="btn btn-primary-light mr-2 font-md" href="/all-products">
|
||||
{{ _('Back to Shop') }}
|
||||
</a>
|
||||
{% if cart_settings.enable_checkout %}
|
||||
<button class="btn btn-primary btn-place-order" type="button">
|
||||
<button class="btn btn-primary btn-place-order font-md" type="button">
|
||||
{{ _('Place Order') }}
|
||||
</button>
|
||||
{% else %}
|
||||
<button class="btn btn-primary btn-request-for-quotation" type="button">
|
||||
<button class="btn btn-primary btn-request-for-quotation font-md" type="button">
|
||||
{{ _('Request for Quotation') }}
|
||||
</button>
|
||||
{% endif %}
|
||||
|
||||
@@ -79,7 +79,7 @@ def search(query, limit=10, fuzzy_search=True):
|
||||
suggestions = ac.get_suggestions(
|
||||
query,
|
||||
num=limit,
|
||||
fuzzy= fuzzy_search and len(query) > 4 # Fuzzy on length < 3 can be real slow
|
||||
fuzzy= fuzzy_search and len(query) > 3 # Fuzzy on length < 3 can be real slow
|
||||
)
|
||||
|
||||
# Build a query
|
||||
|
||||
Reference in New Issue
Block a user