Sfoglia il codice sorgente

Merge pull request #928 from pdvyas/fix-css-url

Fix background url in custom style fix frappe/erpnext# 2434
version-14
Rushabh Mehta 10 anni fa
parent
commit
7540443cad
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      frappe/templates/pages/style_settings.css

+ 1
- 1
frappe/templates/pages/style_settings.css Vedi File

@@ -5,7 +5,7 @@

body {
{% if doc.background_image %}
background: url("../{{ doc.background_image }}") repeat;
background: url("{{ doc.background_image }}") repeat;
{% elif doc.background_color %}
background-color: #{{ doc.background_color }};
background-image: none;


Caricamento…
Annulla
Salva