diff --git a/erpnext/accounts/page/accounts_browser/accounts_browser.js b/erpnext/accounts/page/accounts_browser/accounts_browser.js index cfdc2b4954..61e66970d4 100644 --- a/erpnext/accounts/page/accounts_browser/accounts_browser.js +++ b/erpnext/accounts/page/accounts_browser/accounts_browser.js @@ -19,7 +19,7 @@ pscript['onload_Accounts Browser'] = function(wrapper){ chart_area = $("
") .css({"margin-bottom": "15px", "min-height": "200px"}) .appendTo(main), - help_area = $('
'+ + help_area = $('
'+ '

'+__('Quick Help')+'

'+ '
    '+ '
  1. '+__('To add child nodes, explore tree and click on the node under which you want to add more nodes.')+'
  2. '+ diff --git a/erpnext/public/css/erpnext.css b/erpnext/public/css/erpnext.css index 7a93757944..91d1da23b8 100644 --- a/erpnext/public/css/erpnext.css +++ b/erpnext/public/css/erpnext.css @@ -1,7 +1,3 @@ -.small { - font-size: 11.5px; -} - .erpnext-footer { margin: 11px auto; text-align: center; diff --git a/erpnext/public/js/account_tree_grid.js b/erpnext/public/js/account_tree_grid.js index 4bc93ea50a..3b11345d9d 100644 --- a/erpnext/public/js/account_tree_grid.js +++ b/erpnext/public/js/account_tree_grid.js @@ -69,7 +69,7 @@ erpnext.AccountTreeGrid = frappe.views.TreeGridReport.extend({ {fieldtype: "Label", label: __("To")}, {fieldtype: "Date", label: __("To Date"), fieldname: "to_date"}, {fieldtype: "Button", label: __("Refresh"), icon:"icon-refresh icon-white", - cssClass:"btn-info"}, + cssClass:"btn-primary"}, {fieldtype: "Button", label: __("Reset Filters"), icon: "icon-filter"}, ], setup_filters: function() { diff --git a/erpnext/templates/includes/cart.js b/erpnext/templates/includes/cart.js index 90cfea59da..20b86ba325 100644 --- a/erpnext/templates/includes/cart.js +++ b/erpnext/templates/includes/cart.js @@ -8,7 +8,7 @@ frappe.provide("shopping_cart"); $.extend(shopping_cart, { show_error: function(title, text) { - $("#cart-container").html('

    ' + title + '

    ' + text + '
    '); + $("#cart-container").html('

    ' + title + '

    ' + text + '
    '); }, bind_events: function() { @@ -96,7 +96,7 @@ $.extend(shopping_cart, { }); if(!(addresses && addresses.length)) { - $cart_shipping_address.html('
    '+frappe._("Hey! Go ahead and add an address")+'
    '); + $cart_shipping_address.html('
    '+frappe._("Hey! Go ahead and add an address")+'
    '); } else { shopping_cart.render_address($cart_shipping_address, addresses, doc.shipping_address_name); shopping_cart.render_address($cart_billing_address, addresses, doc.customer_address); diff --git a/erpnext/utilities/doctype/rename_tool/rename_tool.js b/erpnext/utilities/doctype/rename_tool/rename_tool.js index 32b6cd4990..5a33b2bf5b 100644 --- a/erpnext/utilities/doctype/rename_tool/rename_tool.js +++ b/erpnext/utilities/doctype/rename_tool/rename_tool.js @@ -44,7 +44,7 @@ cur_frm.cscript.setup_upload = function() { .click(function() { $log.html("Working..."); }) - .addClass("btn-info") + .addClass("btn-primary") .attr('value', 'Upload and Rename') }