Sync images
This commit is contained in:
parent
88495dd9a9
commit
c651ed05fa
7 changed files with 22 additions and 2 deletions
|
|
@ -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="mailto:johndoe@example.com">johndoe@example.com</a></p>
|
||||
<div class="docs-attr-desc"><p>get email id of user formatted as: John Doe <a href="mailto:johndoe@example.com">johndoe@example.com</a></p>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
|
|
|
|||
|
|
@ -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%;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
BIN
frappe/public/images/background.png
Normal file
BIN
frappe/public/images/background.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
BIN
frappe/public/images/smiley.png
Normal file
BIN
frappe/public/images/smiley.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 390 B |
BIN
frappe/public/images/up.png
Normal file
BIN
frappe/public/images/up.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 235 B |
|
|
@ -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%;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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():
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue