Sync images

This commit is contained in:
Ashish Acharya 2015-12-01 12:33:47 +05:30
parent 88495dd9a9
commit c651ed05fa
7 changed files with 22 additions and 2 deletions

View file

@ -300,7 +300,7 @@
frappe.utils.<b>get_formatted_email</b>
<i class="text-muted">(user)</i>
</p>
<div class="docs-attr-desc"><p>get email id of user formatted as: John Doe <a href="&#x6d;&#x61;&#x69;&#x6c;&#116;&#x6f;&#x3a;&#x6a;&#x6f;&#104;&#x6e;&#100;&#111;&#101;&#64;&#101;&#x78;&#97;&#109;p&#x6c;e&#x2e;&#99;&#111;m">&#x6a;&#x6f;&#104;&#x6e;&#100;&#111;&#101;&#64;&#101;&#x78;&#97;&#109;p&#x6c;e&#x2e;&#99;&#111;m</a></p>
<div class="docs-attr-desc"><p>get email id of user formatted as: John Doe <a href="m&#97;i&#108;&#x74;&#111;&#x3a;j&#111;&#x68;&#110;&#x64;&#x6f;&#x65;&#x40;e&#x78;&#97;&#109;&#x70;&#x6c;&#101;&#46;&#x63;&#111;&#x6d;">j&#111;&#x68;&#110;&#x64;&#x6f;&#x65;&#x40;e&#x78;&#97;&#109;&#x70;&#x6c;&#101;&#46;&#x63;&#111;&#x6d;</a></p>
</div>
<br>

View file

@ -588,3 +588,11 @@ a.edit:visited {
color: #454e57;
font-size: 16px;
}
@media (max-width: 767px) {
.offcanvas-container,
.offcanvas,
.offcanvas-main-section {
position: relative;
width: 50%;
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 390 B

BIN
frappe/public/images/up.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 B

View file

@ -346,3 +346,12 @@ a.edit, a.edit:hover, a.edit:focus, a.edit:visited {
color:#454e57;
font-size:16px;
}
@media (max-width: 767px) {
.offcanvas-container,
.offcanvas,
.offcanvas-main-section {
position: relative;
width:50%;
}
}

View file

@ -372,7 +372,10 @@ class setup_docs(object):
"css/octicons": "css/octicons",
# always overwrite octicons.css to fix the path
"css/octicons/octicons.css": "css/octicons/octicons.css",
"images/frappe-bird-grey.svg": "img/frappe-bird-grey.svg"
"images/frappe-bird-grey.svg": "img/frappe-bird-grey.svg",
"images/background.png": "img/background.png",
"images/smiley.png": "img/smiley.png",
"images/up.png": "img/up.png"
}
for source, target in copy_files.iteritems():